Lines Matching defs:Date
47 pub struct Date<Tz: TimeZone> { struct
48 date: NaiveDate, argument
52 /// The minimum possible `Date`. argument
57 impl<Tz: TimeZone> Date<Tz> { impl
277 impl<Tz: TimeZone> Date<Tz> impl
336 impl<Tz: TimeZone> Datelike for Date<Tz> { implementation
411 impl<Tz: TimeZone> Copy for Date<Tz> where <Tz as TimeZone>::Offset: Copy {} implementation
412 unsafe impl<Tz: TimeZone> Send for Date<Tz> where <Tz as TimeZone>::Offset: Send {} implementation
414 impl<Tz: TimeZone, Tz2: TimeZone> PartialEq<Date<Tz2>> for Date<Tz> { implementation
420 impl<Tz: TimeZone> Eq for Date<Tz> {} implementation
422 impl<Tz: TimeZone> PartialOrd for Date<Tz> { implementation
428 impl<Tz: TimeZone> Ord for Date<Tz> { implementation
434 impl<Tz: TimeZone> hash::Hash for Date<Tz> { implementation
440 impl<Tz: TimeZone> Add<OldDuration> for Date<Tz> { implementation
449 impl<Tz: TimeZone> Sub<OldDuration> for Date<Tz> { implementation
458 impl<Tz: TimeZone> Sub<Date<Tz>> for Date<Tz> { implementation
467 impl<Tz: TimeZone> fmt::Debug for Date<Tz> { implementation
473 impl<Tz: TimeZone> fmt::Display for Date<Tz> implementation