[][src]Trait merkletree::merkle::FromIteratorWithConfig

pub trait FromIteratorWithConfig<T> where
    T: Send
{ fn from_iter_with_config<I>(par_iter: I, config: StoreConfig) -> Self
    where
        I: IntoIterator<Item = T>
; }

Required methods

fn from_iter_with_config<I>(par_iter: I, config: StoreConfig) -> Self where
    I: IntoIterator<Item = T>, 

Loading content...

Implementors

impl<T: Element, A: Algorithm<T>, K: Store<T>> FromIteratorWithConfig<T> for MerkleTree<T, A, K>[src]

fn from_iter_with_config<I: IntoIterator<Item = T>>(
    into: I,
    config: StoreConfig
) -> Self
[src]

Creates new merkle tree from an iterator over hashable objects.

Loading content...