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.

Object Safety§

This trait is not object safe.

Implementors§

source§

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