pub trait BitContainer: BitAnd<Output = Self> + BitOr<Output = Self> + Clone + Copy + Default + One + Shl<Output = Self> + NumCast + Not<Output = Self> + Zero + PartialEq + Debug + Reflect + 'static { }

Implementors§

source§

impl<T> BitContainer for Twhere T: BitAnd<Output = Self> + BitOr<Output = Self> + Clone + Copy + Default + One + Shl<Output = Self> + NumCast + Not<Output = Self> + Zero + PartialEq + Debug + Reflect + 'static,