Reformat and fix error

This commit is contained in:
Chris Hennick 2023-06-01 12:59:17 -07:00
parent 7b23b3212a
commit 07679d3b7f
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 8 additions and 1 deletions

View file

@ -1,5 +1,6 @@
//! 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;
@ -101,6 +102,12 @@ impl From<TryFromIntError> for DateTimeRangeError {
} }
} }
impl From<Infallible> for DateTimeRangeError {
fn from(_value: Infallible) -> Self {
DateTimeRangeError
}
}
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!(

View file

@ -51,9 +51,9 @@ mod atomic {
} }
} }
use crate::result::DateTimeRangeError;
#[cfg(feature = "time")] #[cfg(feature = "time")]
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time}; use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
use crate::result::DateTimeRangeError;
#[derive(Clone, Copy, Debug, PartialEq, Eq)] #[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum System { pub enum System {