This commit is contained in:
Chris Hennick 2023-05-30 10:14:06 -07:00
parent 630ca3fa0f
commit bd0cc62afa
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -141,10 +141,11 @@ impl TryInto<NaiveDateTime> for DateTime {
type Error = ();
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
Ok(NaiveDateTime::new(
NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())?,
NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())?,
))
let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())
.ok_or(())?;
let time = NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())
.ok_or(())?;
Ok(NaiveDateTime::new(date, time))
}
}