Enum icu::timezone::ParseError

source ·
#[non_exhaustive]
pub enum ParseError { Syntax(ParseError), Range(RangeError), Date(DateError), MissingFields, InconsistentTimeZoneOffsets, InvalidOffsetError, MismatchedTimeZoneFields, UnknownCalendar, RequiresCalculation, }
Expand description

The error type for parsing IXDTF syntax strings in icu_timezone.

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 for IXDTF string.

§

Range(RangeError)

Parsed record is out of valid date range.

§

Date(DateError)

Parsed date and time records were not a valid ISO date.

§

MissingFields

There were missing fields required to parse component.

§

InconsistentTimeZoneOffsets

There were two offsets provided that were not consistent with each other.

§

InvalidOffsetError

There was an invalid Offset.

§

MismatchedTimeZoneFields

The set of time zone fields was not expected for the given type. For example, if a named time zone was present with offset-only parsing, or an offset was present with named-time-zone-only parsing.

§

UnknownCalendar

An unknown calendar was provided.

§

RequiresCalculation

A timezone calculation is required to interpret this string, which is not supported.

§Example

use icu::timezone::{IxdtfParser, ParseError};

// This timestamp is in UTC, and requires a time zone calculation in order to display a Zurich time.
assert_eq!(
    IxdtfParser::new().try_loose_iso_from_str("2024-08-12T12:32:00Z[Europe/Zurich]").unwrap_err(),
    ParseError::RequiresCalculation,
);

// These timestamps are in local time
IxdtfParser::new().try_loose_iso_from_str("2024-08-12T14:32:00+02:00[Europe/Zurich]").unwrap();
IxdtfParser::new().try_loose_iso_from_str("2024-08-12T14:32:00[Europe/Zurich]").unwrap();

Trait Implementations§

source§

impl Debug for ParseError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<DateError> for ParseError

source§

fn from(value: DateError) -> ParseError

Converts to this type from the input type.
source§

impl From<InvalidOffsetError> for ParseError

source§

fn from(_: InvalidOffsetError) -> ParseError

Converts to this type from the input type.
source§

impl From<ParseError> for ParseError

source§

fn from(value: ParseError) -> ParseError

Converts to this type from the input type.
source§

impl From<RangeError> for ParseError

source§

fn from(value: RangeError) -> ParseError

Converts to this type from the input type.
source§

impl PartialEq for ParseError

source§

fn eq(&self, other: &ParseError) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for ParseError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T
where T: Send + Sync,