pub trait SimpleBitOps: Sized + Clear + BitOr<Self, Output = Self> + BitXor<Self, Output = Self> + BitAnd<Self, Output = Self> { }
Expand description

A meta trait for all bit ops.

Implementors§

§

impl<T> SimpleBitOps for Twhere T: BitOr<T, Output = T> + BitXor<T, Output = T> + BitAnd<T, Output = T> + Clear,