Home
last modified time | relevance | path

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

/external/rust/crates/chrono/src/
Ddate.rs385 fn with_month0(&self, month0: u32) -> Option<Date<Tz>> { in with_month0() method
386 map_local(self, |date| date.with_month0(month0)) in with_month0()
Dlib.rs1310 fn with_month0(&self, month0: u32) -> Option<Self>; in with_month0() method
Ddatetime.rs584 fn with_month0(&self, month0: u32) -> Option<DateTime<Tz>> { in with_month0() method
585 map_local(self, |datetime| datetime.with_month0(month0)) in with_month0()
/external/rust/crates/chrono/src/naive/
Ddatetime.rs917 fn with_month0(&self, month0: u32) -> Option<NaiveDateTime> { in with_month0() method
918 self.date.with_month0(month0).map(|d| NaiveDateTime { date: d, ..*self }) in with_month0()
Ddate.rs1353 fn with_month0(&self, month0: u32) -> Option<NaiveDate> { in with_month0() method