pub trait U32Ext {
// Required methods
fn seconds(self) -> Second;
fn minutes(self) -> Minute;
fn hours(self) -> Hour;
fn day(self) -> Day;
fn date(self) -> DateInMonth;
fn month(self) -> Month;
fn year(self) -> Year;
}Expand description
Extension trait that adds convenience methods to the u32 type
Required Methods§
Sourcefn date(self) -> DateInMonth
fn date(self) -> DateInMonth
Seconds