Fix Clippy and fmt warnings

This commit is contained in:
Chris Hennick 2023-05-30 10:41:45 -07:00
parent e596efd5e0
commit eb8709afdf
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -124,14 +124,14 @@ impl TryFrom<NaiveDateTime> for DateTime {
type Error = DateTimeRangeError;
fn try_from(value: NaiveDateTime) -> Result<Self, Self::Error> {
Ok(DateTime::from_date_and_time(
DateTime::from_date_and_time(
value.year().try_into()?,
value.month().try_into()?,
value.day().try_into()?,
value.hour().try_into()?,
value.minute().try_into()?,
value.second().try_into()?,
)?)
)
}
}
@ -143,8 +143,9 @@ impl TryInto<NaiveDateTime> for DateTime {
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
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(())?;
let time =
NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())
.ok_or(())?;
Ok(NaiveDateTime::new(date, time))
}
}