pub trait U32Ext {
// Required methods
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
pub trait U32Ext {
// Required methods
fn day(self) -> Day;
fn date(self) -> DateInMonth;
fn month(self) -> Month;
fn year(self) -> Year;
}Extension trait that adds convenience methods to the u32 type