pub trait Temporal<Tz: TimeZone> {
    fn now(&self) -> Tz;
    fn timestamp(&self) -> i64;
}

Required Methods

Implementors