diff --git a/src/result.rs b/src/result.rs index 0c4776eb..dec3be1e 100644 --- a/src/result.rs +++ b/src/result.rs @@ -1,5 +1,6 @@ //! Error types that can be emitted from this library +use std::convert::Infallible; use std::error::Error; use std::fmt; use std::io; @@ -101,6 +102,12 @@ impl From for DateTimeRangeError { } } +impl From for DateTimeRangeError { + fn from(_value: Infallible) -> Self { + DateTimeRangeError + } +} + 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 b3ec71d7..1eb684a9 100644 --- a/src/types.rs +++ b/src/types.rs @@ -51,9 +51,9 @@ mod atomic { } } +use crate::result::DateTimeRangeError; #[cfg(feature = "time")] use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time}; -use crate::result::DateTimeRangeError; #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum System {