snarkvm_console_program

Trait FromBits

Source
pub trait FromBits: Sized {
    // Required methods
    fn from_bits_le(bits: &[bool]) -> Result<Self, Error>;
    fn from_bits_be(bits: &[bool]) -> Result<Self, Error>;
}

Required Methods§

Source

fn from_bits_le(bits: &[bool]) -> Result<Self, Error>

Reads Self from a boolean array in little-endian order.

Source

fn from_bits_be(bits: &[bool]) -> Result<Self, Error>

Reads Self from a boolean array in big-endian order.

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.

Implementations on Foreign Types§

Source§

impl<N> FromBits for ComputeKey<N>
where N: Network,

Source§

fn from_bits_le(bits_le: &[bool]) -> Result<ComputeKey<N>, Error>

Initializes a new compute key from a list of little-endian bits.

Source§

fn from_bits_be(bits_be: &[bool]) -> Result<ComputeKey<N>, Error>

Initializes a new compute key from a list of big-endian bits.

Implementors§

Source§

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

Source§

impl<E> FromBits for Field<E>
where E: Environment,

Source§

impl<E> FromBits for Address<E>
where E: Environment,

Source§

impl<E> FromBits for Group<E>
where E: Environment,

Source§

impl<E> FromBits for Scalar<E>
where E: Environment,

Source§

impl<E, I> FromBits for Integer<E, I>
where E: Environment, I: IntegerType,

Source§

impl<N> FromBits for Signature<N>
where N: Network,

Source§

impl<N: Network> FromBits for Plaintext<N>

Source§

impl<N: Network> FromBits for Ciphertext<N>

Source§

impl<N: Network> FromBits for Identifier<N>