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

pub struct SplitStr<'a> {
    // some fields omitted
}

An iterator over the substrings of a string separated by a given search string

Trait Implementations

impl<'a> Iterator for SplitStr<'a>

type Item = &'a str

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

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

Derived Implementations

impl<'a> Clone for SplitStr<'a>

fn clone(&self) -> SplitStr<'a>

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