From 07679d3b7f540187dd1a100f741baa82ae1974cf Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 1 Jun 2023 12:59:17 -0700 Subject: [PATCH] Reformat and fix error --- src/result.rs | 7 +++++++ src/types.rs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 {