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§
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.