pub trait Octets: Borrow<[u8]> + BorrowMut<[u8]> {
const LENGTH: usize;
const ZEROS: Self;
}Expand description
Underlying byte-array like type used to represent the octets of an IP address.
Required Associated Constants§
Object Safety§
This trait is not object safe.