EntryPath

Trait EntryPath 

pub trait EntryPath {
    type Iter: Iterator<Item = usize>;

    // Required method
    fn step_iter(self) -> Self::Iter;
}

Required Associated Types§

type Iter: Iterator<Item = usize>

Required Methods§

fn step_iter(self) -> Self::Iter

Implementations on Foreign Types§

§

impl EntryPath for usize

Implementors§

§

impl<'a> EntryPath for &'a Projection

§

type Iter = Iter<'a>