Enum icu::calendar::ParseError
source · #[non_exhaustive]pub enum ParseError {
Syntax(ParseError),
Range(RangeError),
MissingFields,
UnknownCalendar,
}
Expand description
An error returned from parsing an IXDTF string to an icu_calendar
type.
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.
Syntax(ParseError)
Syntax error in the IXDTF string.
Range(RangeError)
Value is out of range.
MissingFields
The IXDTF is missing fields required for parsing into the chosen type.
UnknownCalendar
The IXDTF specifies an unknown calendar.
Trait Implementations§
source§impl Debug for ParseError
impl Debug for ParseError
source§impl From<ParseError> for ParseError
impl From<ParseError> for ParseError
source§fn from(value: ParseError) -> ParseError
fn from(value: ParseError) -> ParseError
Converts to this type from the input type.
source§impl From<RangeError> for ParseError
impl From<RangeError> for ParseError
source§fn from(value: RangeError) -> ParseError
fn from(value: RangeError) -> ParseError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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