Enum icu::datetime::DateTimeError
source · [−]#[non_exhaustive]
pub enum DateTimeError {
Show 17 variants
Pattern(PatternError),
Format(Error),
Data(DataError),
MissingInputField(Option<&'static str>),
Skeleton(SkeletonError),
UnsupportedField(FieldSymbol),
UnsupportedOptions,
PluralRules(PluralsError),
DateTimeInput(CalendarError),
MissingWeekdaySymbol(usize),
MissingMonthSymbol(MonthCode),
FixedDecimal,
FixedDecimalFormatter(DecimalError),
MismatchedAnyCalendar(AnyCalendarKind, Option<AnyCalendarKind>),
MissingDateSymbols,
MissingTimeSymbols,
MissingOrdinalRules,
}
Expand description
A list of error outcomes for various operations in the icu_datetime
crate.
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?
Skeleton(SkeletonError)
An error originating from skeleton matching.
UnsupportedField(FieldSymbol)
An error originating from an unsupported field in a datetime format.
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
An error while attempting to format the input as a FixedDecimal
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
Trait Implementations
sourceimpl Clone for DateTimeError
impl Clone for DateTimeError
sourcefn clone(&self) -> DateTimeError
fn clone(&self) -> DateTimeError
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 DateTimeError
impl Debug for DateTimeError
sourceimpl Display for DateTimeError
impl Display for DateTimeError
sourceimpl Error for DateTimeError
impl Error for DateTimeError
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<CalendarError> for DateTimeError
impl From<CalendarError> for DateTimeError
sourcefn from(e: CalendarError) -> DateTimeError
fn from(e: CalendarError) -> DateTimeError
Converts to this type from the input type.
sourceimpl From<DataError> for DateTimeError
impl From<DataError> for DateTimeError
sourcefn from(e: DataError) -> DateTimeError
fn from(e: DataError) -> DateTimeError
Converts to this type from the input type.
sourceimpl From<Error> for DateTimeError
impl From<Error> for DateTimeError
sourcefn from(e: Error) -> DateTimeError
fn from(e: Error) -> DateTimeError
Converts to this type from the input type.
sourceimpl From<PatternError> for DateTimeError
impl From<PatternError> for DateTimeError
sourcefn from(e: PatternError) -> DateTimeError
fn from(e: PatternError) -> DateTimeError
Converts to this type from the input type.
sourceimpl From<PluralsError> for DateTimeError
impl From<PluralsError> for DateTimeError
sourcefn from(e: PluralsError) -> DateTimeError
fn from(e: PluralsError) -> DateTimeError
Converts to this type from the input type.
sourceimpl From<SkeletonError> for DateTimeError
impl From<SkeletonError> for DateTimeError
sourcefn from(e: SkeletonError) -> DateTimeError
fn from(e: SkeletonError) -> DateTimeError
Converts to this type from the input type.
sourceimpl PartialEq<DateTimeError> for DateTimeError
impl PartialEq<DateTimeError> for DateTimeError
sourcefn eq(&self, other: &DateTimeError) -> bool
fn eq(&self, other: &DateTimeError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DateTimeError) -> bool
fn ne(&self, other: &DateTimeError) -> bool
This method tests for !=
.
impl Copy for DateTimeError
impl StructuralPartialEq for DateTimeError
Auto Trait Implementations
impl RefUnwindSafe for DateTimeError
impl Send for DateTimeError
impl Sync for DateTimeError
impl Unpin for DateTimeError
impl UnwindSafe for DateTimeError
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