Struct snarkvm_wasm::MerkleTree[][src]

pub struct MerkleTree<P> where
    P: MerkleParameters
{ /* fields omitted */ }

Implementations

impl<P> MerkleTree<P> where
    P: MerkleParameters
[src]

pub const DEPTH: u8[src]

pub fn new<L>(parameters: P, leaves: &[L]) -> Result<MerkleTree<P>, MerkleError> where
    L: ToBytes
[src]

pub fn root(&self) -> <<P as MerkleParameters>::H as CRH>::Output[src]

pub fn hashed_leaves(
    &self
) -> Vec<<<P as MerkleParameters>::H as CRH>::Output, Global>
[src]

pub fn generate_proof<L>(
    &self,
    index: usize,
    leaf: &L
) -> Result<MerklePath<P>, MerkleError> where
    L: ToBytes
[src]

Trait Implementations

impl<P> Default for MerkleTree<P> where
    P: MerkleParameters + Default
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for MerkleTree<P> where
    P: RefUnwindSafe,
    <<P as MerkleParameters>::H as CRH>::Output: RefUnwindSafe

impl<P> Send for MerkleTree<P> where
    P: Send,
    <<P as MerkleParameters>::H as CRH>::Output: Send

impl<P> Sync for MerkleTree<P> where
    P: Sync,
    <<P as MerkleParameters>::H as CRH>::Output: Sync

impl<P> Unpin for MerkleTree<P> where
    P: Unpin,
    <<P as MerkleParameters>::H as CRH>::Output: Unpin

impl<P> UnwindSafe for MerkleTree<P> where
    P: UnwindSafe,
    <<P as MerkleParameters>::H as CRH>::Output: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,