time 0.3.54

Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Iterator types.

mod date_iter;
mod month_iter;
mod weekday_iter;

pub use self::date_iter::DateIter;
pub use self::month_iter::MonthIter;
pub use self::weekday_iter::WeekdayIter;

/// An iterator that yields the elements of an underlying iterator in reverse order.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Rev<I> {
    iter: I,
}