#[non_exhaustive]pub enum TransitionRuleError {
InvalidRuleDayJulianDay,
InvalidRuleDayMonth,
InvalidRuleDayWeek,
InvalidRuleDayWeekDay,
InvalidStdUtcOffset,
InvalidDstUtcOffset,
InvalidDstStartEndTime,
InconsistentRule,
}
Expand description
Transition rule error
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.
InvalidRuleDayJulianDay
Invalid rule day julian day
InvalidRuleDayMonth
Invalid rule day month
InvalidRuleDayWeek
Invalid rule day week
InvalidRuleDayWeekDay
Invalid rule day week day
InvalidStdUtcOffset
Invalid standard time UTC offset
InvalidDstUtcOffset
Invalid Daylight Saving Time UTC offset
InvalidDstStartEndTime
Invalid DST start or end time
InconsistentRule
Inconsistent DST transition rules from one year to another
Trait Implementations§
Source§impl Debug for TransitionRuleError
impl Debug for TransitionRuleError
Source§impl Display for TransitionRuleError
impl Display for TransitionRuleError
Source§impl Error for TransitionRuleError
impl Error for TransitionRuleError
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<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.
Auto Trait Implementations§
impl Freeze for TransitionRuleError
impl RefUnwindSafe for TransitionRuleError
impl Send for TransitionRuleError
impl Sync for TransitionRuleError
impl Unpin for TransitionRuleError
impl UnwindSafe for TransitionRuleError
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