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

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

Iterator for the char (representing Unicode Scalar Values) of a string

Created with the method .chars().

Trait Implementations

impl<'a> Iterator for Chars<'a>

type Item = char

fn next(&mut self) -> Option<char>

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

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

impl<'a> DoubleEndedIterator for Chars<'a>

fn next_back(&mut self) -> Option<char>

Derived Implementations

impl<'a> Clone for Chars<'a>

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

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