pub trait TryIntoTime { // Required method fn into_time(self) -> Result<DateTime<Utc>, ParseError>; }
Trait to define conversion to DateTime
DateTime