• Home
  • Raw
  • Download

Lines Matching defs:Tz

63     pub fn from_utc(date: NaiveDate, offset: Tz::Offset) -> Date<Tz> {  in from_utc()
72 pub fn and_time(&self, time: NaiveTime) -> Option<DateTime<Tz>> { in and_time()
82 pub fn and_hms(&self, hour: u32, min: u32, sec: u32) -> DateTime<Tz> { in and_hms()
91 pub fn and_hms_opt(&self, hour: u32, min: u32, sec: u32) -> Option<DateTime<Tz>> { in and_hms_opt()
101 pub fn and_hms_milli(&self, hour: u32, min: u32, sec: u32, milli: u32) -> DateTime<Tz> { in and_hms_milli()
117 ) -> Option<DateTime<Tz>> { in and_hms_milli_opt()
127 pub fn and_hms_micro(&self, hour: u32, min: u32, sec: u32, micro: u32) -> DateTime<Tz> { in and_hms_micro()
143 ) -> Option<DateTime<Tz>> { in and_hms_micro_opt()
153 pub fn and_hms_nano(&self, hour: u32, min: u32, sec: u32, nano: u32) -> DateTime<Tz> { in and_hms_nano()
169 ) -> Option<DateTime<Tz>> { in and_hms_nano_opt()
177 pub fn succ(&self) -> Date<Tz> { in succ()
185 pub fn succ_opt(&self) -> Option<Date<Tz>> { in succ_opt()
193 pub fn pred(&self) -> Date<Tz> { in pred()
201 pub fn pred_opt(&self) -> Option<Date<Tz>> { in pred_opt()
213 pub fn timezone(&self) -> Tz { in timezone()
228 pub fn checked_add_signed(self, rhs: OldDuration) -> Option<Date<Tz>> { in checked_add_signed()
237 pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<Date<Tz>> { in checked_sub_signed()
270 fn map_local<Tz: TimeZone, F>(d: &Date<Tz>, mut f: F) -> Option<Date<Tz>> in map_local()
375 fn with_year(&self, year: i32) -> Option<Date<Tz>> { in with_year()
380 fn with_month(&self, month: u32) -> Option<Date<Tz>> { in with_month()
385 fn with_month0(&self, month0: u32) -> Option<Date<Tz>> { in with_month0()
390 fn with_day(&self, day: u32) -> Option<Date<Tz>> { in with_day()
395 fn with_day0(&self, day0: u32) -> Option<Date<Tz>> { in with_day0()
400 fn with_ordinal(&self, ordinal: u32) -> Option<Date<Tz>> { in with_ordinal()
405 fn with_ordinal0(&self, ordinal0: u32) -> Option<Date<Tz>> { in with_ordinal0()
444 fn add(self, rhs: OldDuration) -> Date<Tz> { in add()
453 fn sub(self, rhs: OldDuration) -> Date<Tz> { in sub()