pub trait HType:
FromBytes
+ IntoBytes
+ Immutable
+ Unaligned
+ Copy
+ Clone
+ Hash
+ Eq {
const HTYPE: ArpHardwareType;
const HLEN: u8;
const BROADCAST: Self;
const UNSPECIFIED: Self;
}
Expand description
A trait to represent an ARP hardware type.
Required Associated Constants§
Sourceconst HTYPE: ArpHardwareType
const HTYPE: ArpHardwareType
The hardware type.
Sourceconst UNSPECIFIED: Self
const UNSPECIFIED: Self
The all-zeros address for this type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.