Struct device_tree::util::str::MatchIndices [] [src]

pub struct MatchIndices<'a, P> where P: Pattern<'a>(_);
1.5.0

Created with the method match_indices().

Trait Implementations

impl<'a, P> Debug for MatchIndices<'a, P> where P: Pattern<'a>, P::Searcher: Debug

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>

impl<'a, P> Iterator for MatchIndices<'a, P> where P: Pattern<'a>

type Item = (usize, &'a str)

fn next(&mut self) -> Option<(usize, &'a str)>

impl<'a, P> Clone for MatchIndices<'a, P> where P: Pattern<'a>, P::Searcher: Clone

fn clone(&self) -> MatchIndices<'a, P>

impl<'a, P> DoubleEndedIterator for MatchIndices<'a, P> where P: Pattern<'a>, P::Searcher: DoubleEndedSearcher<'a>

fn next_back(&mut self) -> Option<(usize, &'a str)>