pub trait Length: Copy + Clone + Debug + Display + Hash + Ord + Add<Output = Self> + Sub<Output = Self> + Into<usize> + TryFrom<usize> {
const ZERO: Self;
const ONE: Self;
}Expand description
Underlying integer-like type used to represent an IP prefix-length.
Required Associated Constants§
Object Safety§
This trait is not object safe.