Trait nom::IterIndices [] [src]

pub trait IterIndices {
    type Item: AsChar;
    type Iter: Iterator<Item=(usize, Self::Item)>;
    fn iter_indices(self) -> Self::Iter;
}

Associated Types

type Item: AsChar

type Iter: Iterator<Item=(usize, Self::Item)>

Required Methods

fn iter_indices(self) -> Self::Iter

Implementors