#[non_exhaustive]pub enum ParseError {
    Syntax(ParseError),
    Range(RangeError),
    MissingFields,
    UnknownCalendar,
    MismatchedCalendar(CalendarAlgorithm, CalendarAlgorithm),
}Expand description
An error returned from parsing an RFC 9557 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.
Range(RangeError)
Value is out of range.
MissingFields
The RFC 9557 string is missing fields required for parsing into the chosen type.
UnknownCalendar
The RFC 9557 string specifies an unknown calendar.
MismatchedCalendar(CalendarAlgorithm, CalendarAlgorithm)
Expected a different calendar.
Trait Implementations§
Source§impl Debug for ParseError
 
impl Debug for ParseError
Source§impl Display for ParseError
 
impl Display 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<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