Enum icu_plurals::error::PluralsError
source · #[non_exhaustive]pub enum PluralsError {
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 from icu_provider
.
Trait Implementations§
source§impl Clone for PluralsError
impl Clone for PluralsError
source§fn clone(&self) -> PluralsError
fn clone(&self) -> PluralsError
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 PluralsError
impl Debug for PluralsError
source§impl Display for PluralsError
impl Display for PluralsError
source§impl From<DataError> for PluralsError
impl From<DataError> for PluralsError
source§impl PartialEq for PluralsError
impl PartialEq for PluralsError
source§fn eq(&self, other: &PluralsError) -> bool
fn eq(&self, other: &PluralsError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PluralsError
impl StructuralPartialEq for PluralsError
Auto Trait Implementations§
impl Freeze for PluralsError
impl RefUnwindSafe for PluralsError
impl Send for PluralsError
impl Sync for PluralsError
impl Unpin for PluralsError
impl UnwindSafe for PluralsError
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