pub enum DateTimeRangeError {
InvalidYear(u16, RangeInclusive<u16>),
InvalidMonth(u8, RangeInclusive<u8>),
InvalidDay(u8, RangeInclusive<u8>),
InvalidHour(u8, Range<u8>),
InvalidMinute(u8, Range<u8>),
InvalidSecond(u8, RangeInclusive<u8>),
NumericConversion(&'static str, TryFromIntError),
}
Expand description
Error type for time parsing
Variants§
InvalidYear(u16, RangeInclusive<u16>)
year {0} was not in range {1:?}
InvalidMonth(u8, RangeInclusive<u8>)
month {0} was not in range {1:?}
InvalidDay(u8, RangeInclusive<u8>)
day {0} was not in range {1:?}
InvalidHour(u8, Range<u8>)
hour {0} was not in range {1:?}
InvalidMinute(u8, Range<u8>)
minute {0} was not in range {1:?}
InvalidSecond(u8, RangeInclusive<u8>)
second {0} was not in range {1:?}
NumericConversion(&'static str, TryFromIntError)
failed to convert {0}: {1}
Trait Implementations§
Source§impl Debug for DateTimeRangeError
impl Debug for DateTimeRangeError
Source§impl Display for DateTimeRangeError
impl Display for DateTimeRangeError
Source§impl Error for DateTimeRangeError
impl Error for DateTimeRangeError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for DateTimeRangeError
impl RefUnwindSafe for DateTimeRangeError
impl Send for DateTimeRangeError
impl Sync for DateTimeRangeError
impl Unpin for DateTimeRangeError
impl UnwindSafe for DateTimeRangeError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more