#[non_exhaustive]pub enum LocaleTransformError {
Data(DataError),
}
Expand description
A list of error outcomes for various operations in this module.
Re-exported as 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.
Data(DataError)
An error originating inside of the data provider.
Trait Implementations§
source§impl Clone for LocaleTransformError
impl Clone for LocaleTransformError
source§fn clone(&self) -> LocaleTransformError
fn clone(&self) -> LocaleTransformError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LocaleTransformError
impl Debug for LocaleTransformError
source§impl Display for LocaleTransformError
impl Display for LocaleTransformError
source§impl From<DataError> for LocaleTransformError
impl From<DataError> for LocaleTransformError
source§impl PartialEq for LocaleTransformError
impl PartialEq for LocaleTransformError
source§fn eq(&self, other: &LocaleTransformError) -> bool
fn eq(&self, other: &LocaleTransformError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LocaleTransformError
impl StructuralPartialEq for LocaleTransformError
Auto Trait Implementations§
impl Freeze for LocaleTransformError
impl RefUnwindSafe for LocaleTransformError
impl Send for LocaleTransformError
impl Sync for LocaleTransformError
impl Unpin for LocaleTransformError
impl UnwindSafe for LocaleTransformError
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