refactor: Convert impl TryInto<NaiveDateTime> for DateTime to impl TryFrom<DateTime> for NaiveDateTime (#136)

This commit is contained in:
Chris Hennick 2024-05-19 11:51:20 -07:00
parent 2148580a27
commit 3afe549161
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -108,14 +108,14 @@ impl TryFrom<NaiveDateTime> for DateTime {
}
#[cfg(feature = "chrono")]
impl TryInto<NaiveDateTime> for DateTime {
impl TryFrom<DateTime> for NaiveDateTime {
type Error = DateTimeRangeError;
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())
fn try_from(value: DateTime) -> Result<Self, Self::Error> {
let date = NaiveDate::from_ymd_opt(value.year.into(), value.month.into(), value.day.into())
.ok_or(DateTimeRangeError)?;
let time =
NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())
NaiveTime::from_hms_opt(value.hour.into(), value.minute.into(), value.second.into())
.ok_or(DateTimeRangeError)?;
Ok(NaiveDateTime::new(date, time))
}