Searched refs:DateImpl (Results 1 – 3 of 3) sorted by relevance
8 use super::internals::{DateImpl, Of, YearFlags};21 ywf: DateImpl, // (year << 10) | (week << 4) | flag45 IsoWeek { ywf: (year << 10) | (week << 4) as DateImpl | DateImpl::from(of.flags().0) } in iso_week_from_yof()
25 pub type DateImpl = i32; typedef27 pub const MAX_YEAR: DateImpl = i32::MAX >> 13;28 pub const MIN_YEAR: DateImpl = i32::MIN >> 13;
21 use super::internals::{self, DateImpl, Mdf, Of, YearFlags};100 ymdf: DateImpl, // (year << 13) | of141 Some(NaiveDate { ymdf: (year << 13) | (of as DateImpl) }) in from_of()790 Some(NaiveDate { ymdf: (self.ymdf & !0b1_1111_1111_1111) | of as DateImpl }) in with_of()