Home
last modified time | relevance | path

Searched refs:with_day0 (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/chrono/src/
Ddate.rs395 fn with_day0(&self, day0: u32) -> Option<Date<Tz>> { in with_day0() method
396 map_local(self, |date| date.with_day0(day0)) in with_day0()
Dlib.rs1320 fn with_day0(&self, day0: u32) -> Option<Self>; in with_day0() method
Ddatetime.rs594 fn with_day0(&self, day0: u32) -> Option<DateTime<Tz>> { in with_day0() method
595 map_local(self, |datetime| datetime.with_day0(day0)) in with_day0()
/external/rust/crates/chrono/src/naive/
Ddatetime.rs959 fn with_day0(&self, day0: u32) -> Option<NaiveDateTime> { in with_day0() method
960 self.date.with_day0(day0).map(|d| NaiveDateTime { date: d, ..*self }) in with_day0()
Ddate.rs1391 fn with_day0(&self, day0: u32) -> Option<NaiveDate> { in with_day0() method