Enum icu_datetime::time_zone::FallbackFormat
source · #[non_exhaustive]pub enum FallbackFormat {
Iso8601(IsoFormat, IsoMinutes, IsoSeconds),
LocalizedGmt,
}
Expand description
An enum for time zone fallback formats.
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.
Iso8601(IsoFormat, IsoMinutes, IsoSeconds)
The ISO 8601 format for time zone format fallback.
LocalizedGmt
The localized GMT format for time zone format fallback.
See UTS 35 on Dates for more information.
Trait Implementations§
source§impl Clone for FallbackFormat
impl Clone for FallbackFormat
source§fn clone(&self) -> FallbackFormat
fn clone(&self) -> FallbackFormat
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 FallbackFormat
impl Debug for FallbackFormat
source§impl Default for FallbackFormat
impl Default for FallbackFormat
source§fn default() -> FallbackFormat
fn default() -> FallbackFormat
Returns the “default value” for a type. Read more
source§impl From<FallbackFormat> for FallbackTimeZoneFormatterUnit
impl From<FallbackFormat> for FallbackTimeZoneFormatterUnit
Load a fallback format for timezone. The fallback format will be executed if there are no matching format results.
source§fn from(value: FallbackFormat) -> Self
fn from(value: FallbackFormat) -> Self
Converts to this type from the input type.
source§impl From<FallbackFormat> for TimeZoneFormatterOptions
impl From<FallbackFormat> for TimeZoneFormatterOptions
source§fn from(fallback_format: FallbackFormat) -> Self
fn from(fallback_format: FallbackFormat) -> Self
Converts to this type from the input type.
source§impl PartialEq for FallbackFormat
impl PartialEq for FallbackFormat
source§fn eq(&self, other: &FallbackFormat) -> bool
fn eq(&self, other: &FallbackFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FallbackFormat
impl StructuralPartialEq for FallbackFormat
Auto Trait Implementations§
impl Freeze for FallbackFormat
impl RefUnwindSafe for FallbackFormat
impl Send for FallbackFormat
impl Sync for FallbackFormat
impl Unpin for FallbackFormat
impl UnwindSafe for FallbackFormat
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