Trait snarkvm_wasm::bits::to_bytes::ToBytesGadget[][src]

pub trait ToBytesGadget<F> where
    F: Field
{ fn to_bytes<CS>(&self, cs: CS) -> Result<Vec<UInt8, Global>, SynthesisError>
    where
        CS: ConstraintSystem<F>
;
fn to_bytes_strict<CS>(
        &self,
        cs: CS
    ) -> Result<Vec<UInt8, Global>, SynthesisError>
    where
        CS: ConstraintSystem<F>
; }

Required methods

Additionally checks if the produced list of booleans is ‘valid’.

Implementations on Foreign Types

Implementors