pub trait BooleanTrait: Adder + BitAndAssign<Self> + BitAnd<Self, Output = Self> + BitOrAssign<Self> + BitOr<Self, Output = Self> + BitXorAssign<Self> + BitXor<Self, Output = Self> + Clone + Eject<Primitive = bool> + Equal<Self> + FromBits + Inject<Primitive = bool> + Nand<Self> + Nor<Self> + Not + Parser + Subtractor + Ternary + ToBits + TypeName { }
Expand description

Representation of a boolean.

Implementors§

§

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