pub trait BooleanTrait: BitAndAssign + BitAnd<Output = Self, Output = Self> + for<'a> BitAnd<&'a Self> + BitOrAssign + BitOr<Output = Self, Output = Self> + for<'a> BitOr<&'a Self> + BitXorAssign + BitXor<Output = Self, Output = Self> + for<'a> BitXor<&'a Self> + Copy + Clone + Debug + Deref + Eq + Equal + Nand + Nor + Not + Parser + Send + SizeInBits + SizeInDataBits + SizeInBytes + Sync + TypeName + Uniform { }
Expand description

Representation of a boolean.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<E> BooleanTrait for Boolean<E>
where E: Environment,