Struct std::str::SplitStable [-] [+] [src]

pub struct Split<'a, P>(_);

Return type of StrExt::split

Trait Implementations

impl<'a, P> Iterator for Split<'a, P> where P: CharEq

type Item = &'a str

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

fn size_hint(&self) -> (usize, Option<usize>)

fn size_hint(&self) -> (usize, Option<usize>)

impl<'a, P> DoubleEndedIterator for Split<'a, P> where P: CharEq

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

Derived Implementations

impl<'a, P> Clone for Split<'a, P> where P: Clone

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

fn clone_from(&mut self, &Split<'a, P>)