DatePiece

Trait DatePiece 

Source
pub trait DatePiece {
    // Required methods
    fn year(&self) -> i64;
    fn month(&self) -> Month;
    fn day(&self) -> i8;
    fn yearday(&self) -> i16;
    fn weekday(&self) -> Weekday;

    // Provided methods
    fn year_of_century(&self) -> i64 { ... }
    fn years_from_2000(&self) -> i64 { ... }
}
Expand description

The date piece trait is used for date and time values that have date components of years, months, and days.

Required Methods§

Source

fn year(&self) -> i64

The year, in absolute terms. This is in human-readable format, so the year 2014 actually has a year value of 2014, rather than 14 or 114 or anything like that.

Source

fn month(&self) -> Month

The month of the year.

Source

fn day(&self) -> i8

The day of the month, from 1 to 31.

Source

fn yearday(&self) -> i16

The day of the year, from 1 to 366.

Source

fn weekday(&self) -> Weekday

The day of the week.

Provided Methods§

Source

fn year_of_century(&self) -> i64

The number of years into the century. This is the same as the last two digits of the year.

Source

fn years_from_2000(&self) -> i64

The year number, relative to the year 2000. Internally, many routines use years relative the year 2000, rather than the year 0 (well, 1 BCE).

Implementors§