Struct ark_crypto_primitives::merkle_tree::MerkleTree[][src]

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

Implementations

impl<P: Config> MerkleTree<P>[src]

pub const HEIGHT: u8[src]

pub fn blank(parameters: Parameters<P>) -> Self[src]

pub fn new<L: ToBytes>(
    parameters: Parameters<P>,
    leaves: &[L]
) -> Result<Self, Error>
[src]

pub fn root(&self) -> Digest<P>[src]

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

Auto Trait Implementations

impl<P> RefUnwindSafe for MerkleTree<P> where
    <<P as Config>::H as FixedLengthCRH>::Output: RefUnwindSafe,
    <<P as Config>::H as FixedLengthCRH>::Parameters: RefUnwindSafe

impl<P> Send for MerkleTree<P> where
    <<P as Config>::H as FixedLengthCRH>::Output: Send,
    <<P as Config>::H as FixedLengthCRH>::Parameters: Send

impl<P> Sync for MerkleTree<P> where
    <<P as Config>::H as FixedLengthCRH>::Output: Sync,
    <<P as Config>::H as FixedLengthCRH>::Parameters: Sync

impl<P> Unpin for MerkleTree<P> where
    <<P as Config>::H as FixedLengthCRH>::Output: Unpin,
    <<P as Config>::H as FixedLengthCRH>::Parameters: Unpin

impl<P> UnwindSafe for MerkleTree<P> where
    <<P as Config>::H as FixedLengthCRH>::Output: UnwindSafe,
    <<P as Config>::H as FixedLengthCRH>::Parameters: 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> Instrument for T[src]

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

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>,