#[non_exhaustive]pub enum TzError {
TzFile(TzFileError),
TzString(TzStringError),
LocalTimeType(LocalTimeTypeError),
TransitionRule(TransitionRuleError),
TimeZone(TimeZoneError),
DateTime(DateTimeError),
OutOfRange,
NoAvailableLocalTimeType,
}
Expand description
Unified error type for every non I/O error 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.
TzFile(TzFileError)
Available on crate feature
alloc
only.Unified error for parsing a TZif file
TzString(TzStringError)
Available on crate feature
alloc
only.Unified error for parsing a TZ string
LocalTimeType(LocalTimeTypeError)
Local time type error
TransitionRule(TransitionRuleError)
Transition rule error
TimeZone(TimeZoneError)
Time zone error
DateTime(DateTimeError)
Date time error
OutOfRange
Out of range operation
NoAvailableLocalTimeType
No available local time type
Trait Implementations§
Source§impl Error for TzError
impl Error for TzError
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<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<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<TzFileError> for TzError
Available on crate feature alloc
only.
impl From<TzFileError> for TzError
Available on crate feature
alloc
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 alloc
only.
impl From<TzStringError> for TzError
Available on crate feature
alloc
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