Enum icu_datetime::LoadError
source · #[non_exhaustive]pub enum LoadError {
DuplicateField(Field),
UnsupportedField(Field),
TypeTooNarrow(Field),
Data(DataError),
MissingNames(Field),
}
Expand description
Error returned from TypedDateTimeNames
’s pattern load methods.
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.
DuplicateField(Field)
DuplicateField
UnsupportedField(Field)
ICU4X does not support this field
TypeTooNarrow(Field)
The specific type does not support this field
Data(DataError)
An error arising from the DataProvider
MissingNames(Field)
MissingNames
Trait Implementations§
source§impl From<SingleLoadError> for LoadError
impl From<SingleLoadError> for LoadError
source§fn from(value: SingleLoadError) -> Self
fn from(value: SingleLoadError) -> Self
Converts to this type from the input type.
source§impl PartialEq for LoadError
impl PartialEq for LoadError
impl Copy for LoadError
impl StructuralPartialEq for LoadError
Auto Trait Implementations§
impl Freeze for LoadError
impl RefUnwindSafe for LoadError
impl Send for LoadError
impl Sync for LoadError
impl Unpin for LoadError
impl UnwindSafe for LoadError
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