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

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

Created with the method rmatch_indices().

Trait Implementations

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

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

impl<'a, P> Iterator for RMatchIndices<'a, P> where P: Pattern<'a>, P::Searcher: ReverseSearcher<'a>

type Item = (usize, &'a str)

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

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

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

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

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