Having a way to convert into std::time structs would help, e.g.
impl From<DateTime> for std::time::SystemTime { ...}
impl From<&DateTime> for std::time::SystemTime { ...}
impl From<Duration> for std::time::Duration { ...}
impl From<&Duration> for std::time::Duration {...}
Having a way to convert into
std::timestructs would help, e.g.