snarkvm_console_types_integers

Trait BooleanTrait

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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