Reformat and fix error
This commit is contained in:
parent
7b23b3212a
commit
07679d3b7f
2 changed files with 8 additions and 1 deletions
|
@ -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<TryFromIntError> for DateTimeRangeError {
|
|||
}
|
||||
}
|
||||
|
||||
impl From<Infallible> for DateTimeRangeError {
|
||||
fn from(_value: Infallible) -> Self {
|
||||
DateTimeRangeError
|
||||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for DateTimeRangeError {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue