Refactor to eliminate From<Infallible>
This commit is contained in:
parent
a6a6484bf8
commit
34945fe884
2 changed files with 2 additions and 9 deletions
|
@ -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<TryFromIntError> for DateTimeRangeError {
|
|||
}
|
||||
}
|
||||
|
||||
impl From<Infallible> for DateTimeRangeError {
|
||||
fn from(_value: Infallible) -> Self {
|
||||
unreachable!()
|
||||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for DateTimeRangeError {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(
|
||||
|
|
|
@ -122,7 +122,7 @@ impl TryFrom<NaiveDateTime> for DateTime {
|
|||
fn try_from(value: NaiveDateTime) -> Result<Self, Self::Error> {
|
||||
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<OffsetDateTime> 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(),
|
||||
|
|
Loading…
Add table
Reference in a new issue