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
|
//! Error types that can be emitted from this library
|
||||||
|
|
||||||
use std::convert::Infallible;
|
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::io;
|
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 {
|
impl fmt::Display for DateTimeRangeError {
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(
|
write!(
|
||||||
|
|
|
@ -122,7 +122,7 @@ impl TryFrom<NaiveDateTime> for DateTime {
|
||||||
fn try_from(value: NaiveDateTime) -> Result<Self, Self::Error> {
|
fn try_from(value: NaiveDateTime) -> Result<Self, Self::Error> {
|
||||||
DateTime::from_date_and_time(
|
DateTime::from_date_and_time(
|
||||||
value.year().try_into()?,
|
value.year().try_into()?,
|
||||||
value.month().try_into()?,
|
u8::from(value.month()).into(),
|
||||||
value.day().try_into()?,
|
value.day().try_into()?,
|
||||||
value.hour().try_into()?,
|
value.hour().try_into()?,
|
||||||
value.minute().try_into()?,
|
value.minute().try_into()?,
|
||||||
|
@ -316,7 +316,7 @@ impl TryFrom<OffsetDateTime> for DateTime {
|
||||||
if dt.year() >= 1980 && dt.year() <= 2107 {
|
if dt.year() >= 1980 && dt.year() <= 2107 {
|
||||||
Ok(DateTime {
|
Ok(DateTime {
|
||||||
year: (dt.year()).try_into()?,
|
year: (dt.year()).try_into()?,
|
||||||
month: (dt.month()).try_into()?,
|
month: dt.month().into(),
|
||||||
day: dt.day(),
|
day: dt.day(),
|
||||||
hour: dt.hour(),
|
hour: dt.hour(),
|
||||||
minute: dt.minute(),
|
minute: dt.minute(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue