• Home
  • Raw
  • Download

Lines Matching defs:u32

172     pub fn from_ymd(year: i32, month: u32, day: u32) -> NaiveDate {  in from_ymd()
195 pub fn from_ymd_opt(year: i32, month: u32, day: u32) -> Option<NaiveDate> { in from_ymd_opt()
270 pub fn from_isoywd(year: i32, week: u32, weekday: Weekday) -> NaiveDate { in from_isoywd()
318 pub fn from_isoywd_opt(year: i32, week: u32, weekday: Weekday) -> Option<NaiveDate> { in from_isoywd_opt()
450 pub fn from_weekday_of_month(year: i32, month: u32, weekday: Weekday, n: u8) -> NaiveDate { in from_weekday_of_month()
468 month: u32, in from_weekday_of_month_opt()
568 pub fn and_hms(&self, hour: u32, min: u32, sec: u32) -> NaiveDateTime { in and_hms()
591 pub fn and_hms_opt(&self, hour: u32, min: u32, sec: u32) -> Option<NaiveDateTime> { in and_hms_opt()
616 pub fn and_hms_milli(&self, hour: u32, min: u32, sec: u32, milli: u32) -> NaiveDateTime { in and_hms_milli()
643 hour: u32, in and_hms_milli_opt()
644 min: u32, in and_hms_milli_opt()
645 sec: u32, in and_hms_milli_opt()
646 milli: u32, in and_hms_milli_opt()
672 pub fn and_hms_micro(&self, hour: u32, min: u32, sec: u32, micro: u32) -> NaiveDateTime { in and_hms_micro()
699 hour: u32, in and_hms_micro_opt()
700 min: u32, in and_hms_micro_opt()
701 sec: u32, in and_hms_micro_opt()
702 micro: u32, in and_hms_micro_opt()
728 pub fn and_hms_nano(&self, hour: u32, min: u32, sec: u32, nano: u32) -> NaiveDateTime { in and_hms_nano()
755 hour: u32, in and_hms_nano_opt()
756 min: u32, in and_hms_nano_opt()
757 sec: u32, in and_hms_nano_opt()
758 nano: u32, in and_hms_nano_opt()
1131 fn month(&self) -> u32 { in month()
1148 fn month0(&self) -> u32 { in month0()
1188 fn day(&self) -> u32 { in day()
1205 fn day0(&self) -> u32 { in day0()
1244 fn ordinal(&self) -> u32 { in ordinal()
1261 fn ordinal0(&self) -> u32 { in ordinal0()
2065 fn check(year: i32, month: u32, day: u32, ordinal: u32) { in test_date_fields()
2183 fn check((y1, m1, d1): (i32, u32, u32), rhs: Duration, ymd: Option<(i32, u32, u32)>) { in test_date_add() argument
2213 fn check((y1, m1, d1): (i32, u32, u32), (y2, m2, d2): (i32, u32, u32), diff: Duration) { in test_date_sub() argument