fuel_merkle::common

Trait AsPathIterator

source
pub trait AsPathIterator<T: ParentNode> {
    // Required method
    fn as_path_iter(&self, leaf_key: &T::Key) -> PathIter<T>;
}

Required Methods§

source

fn as_path_iter(&self, leaf_key: &T::Key) -> PathIter<T>

Implementors§

source§

impl<T> AsPathIterator<T> for T
where T: ParentNode + Clone, T::Key: Clone,