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,