Enum icu_datetime::error::DateTimeError
source · #[non_exhaustive]pub enum DateTimeError {
Show 19 variants
Pattern(PatternError),
Format(Error),
Data(DataError),
MissingInputField(Option<&'static str>),
UnsupportedField(FieldSymbol),
UnsupportedFormattingField(Field),
UnsupportedOptions,
PluralRules(PluralsError),
DateTimeInput(CalendarError),
MissingWeekdaySymbol(usize),
MissingMonthSymbol(MonthCode),
FixedDecimal,
FixedDecimalFormatter(DecimalError),
MismatchedAnyCalendar(AnyCalendarKind, Option<AnyCalendarKind>),
MissingDateSymbols,
MissingTimeSymbols,
MissingOrdinalRules,
MissingNames(Field),
DuplicateField(Field),
}
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
Pattern(PatternError)
An error originating from parsing a pattern.
Format(Error)
An error originating from the Write
trait.
Data(DataError)
An error originating inside of the data provider.
MissingInputField(Option<&'static str>)
An error originating from a missing field in datetime input. TODO: How can we return which field was missing?
UnsupportedField(FieldSymbol)
An error originating from an unsupported field in a datetime format.
UnsupportedFormattingField(Field)
An unsupported field with a field length.
UnsupportedOptions
An error due to there being no patterns for the given options.
PluralRules(PluralsError)
An error originating from PluralRules
.
DateTimeInput(CalendarError)
An error originating from DateTimeInput
.
MissingWeekdaySymbol(usize)
An error originating from a missing weekday symbol in the data.
MissingMonthSymbol(MonthCode)
An error originating from a missing month symbol in the data.
FixedDecimal
The FixedDecimalFormatter is not loaded
FixedDecimalFormatter(DecimalError)
An error originating from FixedDecimalFormatter
MismatchedAnyCalendar(AnyCalendarKind, Option<AnyCalendarKind>)
An error from mixing calendar types in DateTimeFormatter
MissingDateSymbols
Missing date symbols
MissingTimeSymbols
Missing time symbols
MissingOrdinalRules
ordinal_rules must be set for PatternPlurals::MultipleVariants
MissingNames(Field)
The names for the given field are not loaded
DuplicateField(Field)
The same field occurs multiple times in a pattern or was loaded multiple times
Trait Implementations§
source§impl Clone for DateTimeError
impl Clone for DateTimeError
source§fn clone(&self) -> DateTimeError
fn clone(&self) -> DateTimeError
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DateTimeError
impl Debug for DateTimeError
source§impl Display for DateTimeError
impl Display for DateTimeError
source§impl From<CalendarError> for DateTimeError
impl From<CalendarError> for DateTimeError
source§fn from(e: CalendarError) -> Self
fn from(e: CalendarError) -> Self
source§impl From<DataError> for DateTimeError
impl From<DataError> for DateTimeError
source§impl From<DecimalError> for DateTimeError
impl From<DecimalError> for DateTimeError
source§fn from(e: DecimalError) -> Self
fn from(e: DecimalError) -> Self
source§impl From<Error> for DateTimeError
impl From<Error> for DateTimeError
source§impl From<MismatchedCalendarError> for DateTimeError
impl From<MismatchedCalendarError> for DateTimeError
source§fn from(e: MismatchedCalendarError) -> Self
fn from(e: MismatchedCalendarError) -> Self
source§impl From<PluralsError> for DateTimeError
impl From<PluralsError> for DateTimeError
source§fn from(e: PluralsError) -> Self
fn from(e: PluralsError) -> Self
source§impl PartialEq for DateTimeError
impl PartialEq for DateTimeError
source§fn eq(&self, other: &DateTimeError) -> bool
fn eq(&self, other: &DateTimeError) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for DateTimeError
impl StructuralPartialEq for DateTimeError
Auto Trait Implementations§
impl Freeze for DateTimeError
impl RefUnwindSafe for DateTimeError
impl Send for DateTimeError
impl Sync for DateTimeError
impl Unpin for DateTimeError
impl UnwindSafe for DateTimeError
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more