pub trait WithFullPostOrderPath<IdN>: RootedPosition<IdN> + WithPostOrderPath<IdN> {
    // Required method
    fn iter_with_nodes(&self) -> (IdN, Self::ItPath);
}
Expand description

test invariants with assert_invariants_post_full

Required Methods§

source

fn iter_with_nodes(&self) -> (IdN, Self::ItPath)

Implementors§

source§

impl<'a, IdN: NodeId + Eq + Copy, Idx: PrimInt> WithFullPostOrderPath<IdN> for ExploreStructuralPositions<'a, IdN, Idx>