#[non_exhaustive]pub enum TzError {
Show 13 variants
Utf8Error(Utf8Error),
TryFromSliceError(TryFromSliceError),
IoError(Error),
SystemTimeError(SystemTimeError),
TzFileError(TzFileError),
TzStringError(TzStringError),
OutOfRangeError(OutOfRangeError),
LocalTimeTypeError(LocalTimeTypeError),
TransitionRuleError(TransitionRuleError),
TimeZoneError(TimeZoneError),
DateTimeError(DateTimeError),
FindLocalTimeTypeError(FindLocalTimeTypeError),
ProjectDateTimeError(ProjectDateTimeError),
}
Expand description
Unified error type for everything in the crate
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Utf8Error(Utf8Error)
UTF-8 error
TryFromSliceError(TryFromSliceError)
Conversion from slice to array error
IoError(Error)
Available on crate feature
std
only.I/O error
SystemTimeError(SystemTimeError)
Available on crate feature
std
only.System time error
TzFileError(TzFileError)
Available on crate feature
std
only.Unified error for parsing a TZif file
TzStringError(TzStringError)
Available on crate feature
std
only.Unified error for parsing a TZ string
OutOfRangeError(OutOfRangeError)
Out of range error
LocalTimeTypeError(LocalTimeTypeError)
Local time type error
TransitionRuleError(TransitionRuleError)
Transition rule error
TimeZoneError(TimeZoneError)
Time zone error
DateTimeError(DateTimeError)
Date time error
FindLocalTimeTypeError(FindLocalTimeTypeError)
Local time type search error
ProjectDateTimeError(ProjectDateTimeError)
Date time projection error
Trait Implementations§
Source§impl Error for TzError
Available on crate feature std
only.
impl Error for TzError
Available on crate feature
std
only.1.30.0 · 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()
Source§impl From<DateTimeError> for TzError
impl From<DateTimeError> for TzError
Source§fn from(error: DateTimeError) -> Self
fn from(error: DateTimeError) -> Self
Converts to this type from the input type.
Source§impl From<FindLocalTimeTypeError> for TzError
impl From<FindLocalTimeTypeError> for TzError
Source§fn from(error: FindLocalTimeTypeError) -> Self
fn from(error: FindLocalTimeTypeError) -> Self
Converts to this type from the input type.
Source§impl From<LocalTimeTypeError> for TzError
impl From<LocalTimeTypeError> for TzError
Source§fn from(error: LocalTimeTypeError) -> Self
fn from(error: LocalTimeTypeError) -> Self
Converts to this type from the input type.
Source§impl From<OutOfRangeError> for TzError
impl From<OutOfRangeError> for TzError
Source§fn from(error: OutOfRangeError) -> Self
fn from(error: OutOfRangeError) -> Self
Converts to this type from the input type.
Source§impl From<ProjectDateTimeError> for TzError
impl From<ProjectDateTimeError> for TzError
Source§fn from(error: ProjectDateTimeError) -> Self
fn from(error: ProjectDateTimeError) -> Self
Converts to this type from the input type.
Source§impl From<SystemTimeError> for TzError
Available on crate feature std
only.
impl From<SystemTimeError> for TzError
Available on crate feature
std
only.Source§fn from(error: SystemTimeError) -> Self
fn from(error: SystemTimeError) -> Self
Converts to this type from the input type.
Source§impl From<TimeZoneError> for TzError
impl From<TimeZoneError> for TzError
Source§fn from(error: TimeZoneError) -> Self
fn from(error: TimeZoneError) -> Self
Converts to this type from the input type.
Source§impl From<TransitionRuleError> for TzError
impl From<TransitionRuleError> for TzError
Source§fn from(error: TransitionRuleError) -> Self
fn from(error: TransitionRuleError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for TzError
impl From<TryFromIntError> for TzError
Source§fn from(_: TryFromIntError) -> Self
fn from(_: TryFromIntError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromSliceError> for TzError
impl From<TryFromSliceError> for TzError
Source§fn from(error: TryFromSliceError) -> Self
fn from(error: TryFromSliceError) -> Self
Converts to this type from the input type.
Source§impl From<TzFileError> for TzError
Available on crate feature std
only.
impl From<TzFileError> for TzError
Available on crate feature
std
only.Source§fn from(error: TzFileError) -> Self
fn from(error: TzFileError) -> Self
Converts to this type from the input type.
Source§impl From<TzStringError> for TzError
Available on crate feature std
only.
impl From<TzStringError> for TzError
Available on crate feature
std
only.Source§fn from(error: TzStringError) -> Self
fn from(error: TzStringError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TzError
impl !RefUnwindSafe for TzError
impl Send for TzError
impl Sync for TzError
impl Unpin for TzError
impl !UnwindSafe for TzError
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