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

A meta trait for all bit ops.

Object Safety§

This trait is not object safe.

Implementors§

§

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