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

Required Methods

Implementations on Foreign Types

impl<'a> IterIndices for &'a [u8]
[src]

[src]

impl<'a> IterIndices for &'a str
[src]

[src]

Implementors