From 3afe549161cf769f845e50f8d8ec306bc76a8240 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 19 May 2024 11:51:20 -0700 Subject: [PATCH] refactor: Convert `impl TryInto for DateTime` to `impl TryFrom for NaiveDateTime` (#136) --- src/types.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types.rs b/src/types.rs index f1f0141f..bded33f0 100644 --- a/src/types.rs +++ b/src/types.rs @@ -108,14 +108,14 @@ impl TryFrom for DateTime { } #[cfg(feature = "chrono")] -impl TryInto for DateTime { +impl TryFrom for NaiveDateTime { type Error = DateTimeRangeError; - fn try_into(self) -> Result { - let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into()) + fn try_from(value: DateTime) -> Result { + 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)) }