Enum icu::timezone::TimeZoneError
source · [−]#[non_exhaustive]
pub enum TimeZoneError {
OffsetOutOfBounds,
InvalidOffset,
Data(DataError),
}
Expand description
A list of error outcomes for various operations in the icu_timezone
crate.
Re-exported as Error
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
OffsetOutOfBounds
An input overflowed its range.
InvalidOffset
The time zone offset was invalid.
Data(DataError)
An error originating inside of the data provider.
Trait Implementations
sourceimpl Clone for TimeZoneError
impl Clone for TimeZoneError
sourcefn clone(&self) -> TimeZoneError
fn clone(&self) -> TimeZoneError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TimeZoneError
impl Debug for TimeZoneError
sourceimpl Display for TimeZoneError
impl Display for TimeZoneError
sourceimpl Error for TimeZoneError
impl Error for TimeZoneError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<DataError> for TimeZoneError
impl From<DataError> for TimeZoneError
sourcefn from(e: DataError) -> TimeZoneError
fn from(e: DataError) -> TimeZoneError
Converts to this type from the input type.
sourceimpl PartialEq<TimeZoneError> for TimeZoneError
impl PartialEq<TimeZoneError> for TimeZoneError
sourcefn eq(&self, other: &TimeZoneError) -> bool
fn eq(&self, other: &TimeZoneError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TimeZoneError) -> bool
fn ne(&self, other: &TimeZoneError) -> bool
This method tests for !=
.
impl Copy for TimeZoneError
impl StructuralPartialEq for TimeZoneError
Auto Trait Implementations
impl RefUnwindSafe for TimeZoneError
impl Send for TimeZoneError
impl Sync for TimeZoneError
impl Unpin for TimeZoneError
impl UnwindSafe for TimeZoneError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Separable for T where
T: Display,
impl<T> Separable for T where
T: Display,
sourcefn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
Adds separators according to the given SeparatorPolicy
. Read more
sourcefn separate_with_commas(&self) -> String
fn separate_with_commas(&self) -> String
Inserts a comma every three digits from the right. Read more
sourcefn separate_with_spaces(&self) -> String
fn separate_with_spaces(&self) -> String
Inserts a space every three digits from the right. Read more
sourcefn separate_with_dots(&self) -> String
fn separate_with_dots(&self) -> String
Inserts a period every three digits from the right. Read more
sourcefn separate_with_underscores(&self) -> String
fn separate_with_underscores(&self) -> String
Inserts an underscore every three digits from the right. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more