Struct core::str::SplitInternal [] [src]

struct SplitInternal<'a, P: Pattern<'a>> {
    start: usize,
    end: usize,
    matcher: P::Searcher,
    allow_trailing_empty: bool,
    finished: bool,
}

Fields

start
end
matcher
allow_trailing_empty
finished

Methods

impl<'a, P: Pattern<'a>> SplitInternal<'a, P>

fn get_end(&mut self) -> Option<&'a str>

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

fn next_back(&mut self) -> Option<&'a str> where P::Searcher: ReverseSearcher<'a>

Trait Implementations

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

fn clone(&self) -> Self

fn clone_from(&mut self, source: &Self)