Struct chrono::format::strftime::StrftimeItems [-] [+] [src]

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

Parsing iterator for strftime-like format strings.

Methods

impl<'a> StrftimeItems<'a>

fn new(s: &'a str) -> StrftimeItems<'a>

Creates a new parsing iterator from the strftime-like format string.

Trait Implementations

impl<'a> Iterator for StrftimeItems<'a>

type Item = Item<'a>

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

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

Derived Implementations

impl<'a> Clone for StrftimeItems<'a>

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

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