pub enum Errors {
InvalidTimeZone(String),
ParseError(String),
ConversionError(String),
}Expand description
Possible errors that can occur during timezone operations
Variants§
InvalidTimeZone(String)
Error when an invalid timezone identifier is provided
ParseError(String)
Error when parsing datetime strings
ConversionError(String)
Error during timezone conversion
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Errors
impl RefUnwindSafe for Errors
impl Send for Errors
impl Sync for Errors
impl Unpin for Errors
impl UnwindSafe for Errors
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