pub trait LengthMap: Copy + Binary + BitAnd<Output = Self> + BitOr<Output = Self> + Not<Output = Self> + Default + Deref<Target = BitSlice> + DerefMut<Target = BitSlice> + Eq {
const ZERO: Self;
}Expand description
Underlying bit-vector-like type used to represent bitmaps of IP prefix-lengths.