diff --git a/src/types.rs b/src/types.rs index 86c41e13..efad0021 100644 --- a/src/types.rs +++ b/src/types.rs @@ -141,10 +141,11 @@ impl TryInto for DateTime { type Error = (); fn try_into(self) -> Result { - 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)) } }