Trait std::num::Bitwise

pub trait Bitwise: Not<Self> + BitAnd<Self, Self> + BitOr<Self, Self> + BitXor<Self, Self> + Shl<Self, Self> + Shr<Self, Self> { }

Collects the bitwise operators under one trait.

Implementors