Enum icu_datetime::format::datetime::DateTimeWriteError
source · #[non_exhaustive]pub enum DateTimeWriteError {
MissingFixedDecimalFormatter,
MissingDateSymbols,
MissingTimeSymbols,
MissingOrdinalRules,
MissingWeekCalculator,
MissingMonthSymbol(MonthCode),
MissingEraSymbol(Era),
MissingWeekdaySymbol(IsoWeekday),
MissingInputField(&'static str),
CyclicYearOverflow {
value: usize,
max: usize,
},
UnsupportedField(Field),
}
Expand description
Error for TryWriteable
implementations
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.
MissingFixedDecimalFormatter
Missing FixedDecimalFormatter
MissingDateSymbols
Missing DateSymbols
MissingTimeSymbols
Missing TimeSymbols
MissingOrdinalRules
Missing OrdinalRules
MissingWeekCalculator
Missing WeekCalculator
MissingMonthSymbol(MonthCode)
Missing month symbol
MissingEraSymbol(Era)
Missing era symbol
MissingWeekdaySymbol(IsoWeekday)
Missing weekday symbol
MissingInputField(&'static str)
Incomplete input
CyclicYearOverflow
Cyclic year overflow
UnsupportedField(Field)
Unsupported field
Trait Implementations§
source§impl Clone for DateTimeWriteError
impl Clone for DateTimeWriteError
source§fn clone(&self) -> DateTimeWriteError
fn clone(&self) -> DateTimeWriteError
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 DateTimeWriteError
impl Debug for DateTimeWriteError
source§impl Display for DateTimeWriteError
impl Display for DateTimeWriteError
source§impl PartialEq for DateTimeWriteError
impl PartialEq for DateTimeWriteError
source§fn eq(&self, other: &DateTimeWriteError) -> bool
fn eq(&self, other: &DateTimeWriteError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DateTimeWriteError
impl StructuralPartialEq for DateTimeWriteError
Auto Trait Implementations§
impl Freeze for DateTimeWriteError
impl RefUnwindSafe for DateTimeWriteError
impl Send for DateTimeWriteError
impl Sync for DateTimeWriteError
impl Unpin for DateTimeWriteError
impl UnwindSafe for DateTimeWriteError
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
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>
Converts
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>
Converts
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