EntryPath

Trait EntryPath 

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

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

Required Associated Types§

Source

type Iter: Iterator<Item = usize>

Required Methods§

Source

fn step_iter(self) -> Self::Iter

Implementations on Foreign Types§

Source§

impl EntryPath for usize

Implementors§

Source§

impl<'a> EntryPath for &'a Projection

Source§

type Iter = Iter<'a>