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