#[non_exhaustive]#[repr(C)]pub enum DateTimeFormatterLoadError {
Show 13 variants
Unknown = 0,
InvalidDateFields = 2_049,
UnsupportedLength = 2_051,
ConflictingField = 2_057,
FormatterTooSpecific = 2_058,
DataMarkerNotFound = 1,
DataIdentifierNotFound = 2,
DataInvalidRequest = 3,
DataInconsistentData = 4,
DataDowncast = 5,
DataDeserialize = 6,
DataCustom = 7,
DataIo = 8,
}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.
Unknown = 0
InvalidDateFields = 2_049
UnsupportedLength = 2_051
ConflictingField = 2_057
FormatterTooSpecific = 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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PartialEq for DateTimeFormatterLoadError
impl PartialEq for DateTimeFormatterLoadError
Source§fn eq(&self, other: &DateTimeFormatterLoadError) -> bool
fn eq(&self, other: &DateTimeFormatterLoadError) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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