pub trait BitOps:
Sized
+ BitAnd<Output = Self, Output = Self>
+ BitOr<Output = Self, Output = Self>
+ BitXor<Output = Self, Output = Self>
+ Not<Output = Self>
+ for<'a> BitAnd<&'a Self>
+ for<'a> BitOr<&'a Self>
+ for<'a> BitXor<&'a Self> { }
Expand description
A helper trait that collects bit traits under one name.
Object Safety§
This trait is not object safe.