From 34945fe884417873e6868f8015869f9460a7b722 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 1 Jun 2023 14:26:15 -0700 Subject: [PATCH] Refactor to eliminate `From` --- src/result.rs | 7 ------- src/types.rs | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/result.rs b/src/result.rs index d8fb4190..0c4776eb 100644 --- a/src/result.rs +++ b/src/result.rs @@ -1,6 +1,5 @@ //! Error types that can be emitted from this library -use std::convert::Infallible; use std::error::Error; use std::fmt; use std::io; @@ -102,12 +101,6 @@ impl From for DateTimeRangeError { } } -impl From for DateTimeRangeError { - fn from(_value: Infallible) -> Self { - unreachable!() - } -} - impl fmt::Display for DateTimeRangeError { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { write!( diff --git a/src/types.rs b/src/types.rs index 1eb684a9..502f7262 100644 --- a/src/types.rs +++ b/src/types.rs @@ -122,7 +122,7 @@ impl TryFrom for DateTime { fn try_from(value: NaiveDateTime) -> Result { DateTime::from_date_and_time( value.year().try_into()?, - value.month().try_into()?, + u8::from(value.month()).into(), value.day().try_into()?, value.hour().try_into()?, value.minute().try_into()?, @@ -316,7 +316,7 @@ impl TryFrom for DateTime { if dt.year() >= 1980 && dt.year() <= 2107 { Ok(DateTime { year: (dt.year()).try_into()?, - month: (dt.month()).try_into()?, + month: dt.month().into(), day: dt.day(), hour: dt.hour(), minute: dt.minute(),