Enum icu_capi::errors::ffi::DateTimeFormatterLoadError
source · #[repr(C)]pub enum DateTimeFormatterLoadError {
Unknown = 0,
UnsupportedLength = 2_051,
DuplicateField = 2_057,
TypeTooSpecific = 2_058,
DataMarkerNotFound = 1,
DataIdentifierNotFound = 2,
DataInvalidRequest = 3,
DataInconsistentData = 4,
DataDowncast = 5,
DataDeserialize = 6,
DataCustom = 7,
DataIo = 8,
}
Variants§
Unknown = 0
UnsupportedLength = 2_051
DuplicateField = 2_057
TypeTooSpecific = 2_058
DataMarkerNotFound = 1
DataIdentifierNotFound = 2
DataInvalidRequest = 3
DataInconsistentData = 4
DataDowncast = 5
DataDeserialize = 6
DataCustom = 7
DataIo = 8
Trait Implementations§
source§impl Clone for DateTimeFormatterLoadError
impl Clone for DateTimeFormatterLoadError
source§fn clone(&self) -> DateTimeFormatterLoadError
fn clone(&self) -> DateTimeFormatterLoadError
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 DateTimeFormatterLoadError
impl Debug for DateTimeFormatterLoadError
source§impl From<DataError> for DateTimeFormatterLoadError
impl From<DataError> for DateTimeFormatterLoadError
source§impl From<DateTimeFormatterLoadError> for DateTimeFormatterLoadError
impl From<DateTimeFormatterLoadError> for DateTimeFormatterLoadError
source§fn from(e: DateTimeFormatterLoadError) -> Self
fn from(e: DateTimeFormatterLoadError) -> Self
Converts to this type from the input type.
impl Copy for DateTimeFormatterLoadError
impl Eq for DateTimeFormatterLoadError
impl StructuralPartialEq for DateTimeFormatterLoadError
Auto Trait Implementations§
impl Freeze for DateTimeFormatterLoadError
impl RefUnwindSafe for DateTimeFormatterLoadError
impl Send for DateTimeFormatterLoadError
impl Sync for DateTimeFormatterLoadError
impl Unpin for DateTimeFormatterLoadError
impl UnwindSafe for DateTimeFormatterLoadError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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