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

Required Methods§

source

fn as_path_iter(&self, leaf: &Self) -> PathIter<T>

Implementors§

source§

impl<T> AsPathIterator<T> for Twhere T: ParentNode + Clone,