[][src]Trait bm_le::FromListTreeWithConfig

pub trait FromListTreeWithConfig<C, DB: Backend<Intermediate = Intermediate, End = End>>: Sized {
    fn from_list_tree_with_config(
        root: &ValueOf<DB>,
        db: &DB,
        max_len: Option<usize>,
        config: &C
    ) -> Result<Self, Error<DB::Error>>; }

Traits for list converting from a tree structure with config.

Required methods

fn from_list_tree_with_config(
    root: &ValueOf<DB>,
    db: &DB,
    max_len: Option<usize>,
    config: &C
) -> Result<Self, Error<DB::Error>>

Convert this type from merkle tree, reading nodes from the given database, with given maximum length.

Loading content...

Implementors

impl<C, DB, T> FromListTreeWithConfig<C, DB> for VariableVec<T> where
    FixedVec<T>: FromVectorTreeWithConfig<C, DB>,
    DB: Backend<Intermediate = Intermediate, End = End>, 
[src]

Loading content...