Struct icu_datetime::provider::calendar::Eras
source · pub struct Eras<'data> {
pub names: ZeroMap<'data, UnvalidatedStr, str>,
pub abbr: ZeroMap<'data, UnvalidatedStr, str>,
pub narrow: ZeroMap<'data, UnvalidatedStr, str>,
}
Expand description
String data for the name, abbreviation, and narrow form of a date’s era.
Keys of the map represent era codes, and the values are the display names.
Era codes are derived from CLDR data, and are calendar specific.
Some examples include: "be"
, "0"
/ "1"
, "bce"
/ "ce"
,
"heisei"
/ "meiji"
/ "reiwa"
/ … Not all era codes are inherited as-is,
such as for the extended Japanese calendar.
For more information on date time symbols, see FieldSymbol
.
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fields§
§names: ZeroMap<'data, UnvalidatedStr, str>
Symbol data for era names.
Keys are era codes, and values are display names. See Eras
.
abbr: ZeroMap<'data, UnvalidatedStr, str>
Symbol data for era abbreviations.
Keys are era codes, and values are display names. See Eras
.
narrow: ZeroMap<'data, UnvalidatedStr, str>
Symbol data for era narrow forms.
Keys are era codes, and values are display names. See Eras
.
Trait Implementations§
source§impl<'data> PartialEq for Eras<'data>
impl<'data> PartialEq for Eras<'data>
source§impl<'a> Yokeable<'a> for Eras<'static>
impl<'a> Yokeable<'a> for Eras<'static>
impl<'data> StructuralPartialEq for Eras<'data>
Auto Trait Implementations§
impl<'data> Freeze for Eras<'data>
impl<'data> RefUnwindSafe for Eras<'data>
impl<'data> Send for Eras<'data>
impl<'data> Sync for Eras<'data>
impl<'data> Unpin for Eras<'data>
impl<'data> UnwindSafe for Eras<'data>
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