pub enum SymbolsV1<'data> {
SolarTwelve([Cow<'data, str>; 12]),
Other(ZeroMap<'data, MonthCode, str>),
}
Expand description
Locale data for Month corresponding to the symbols.
🚧 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.
Variants§
SolarTwelve([Cow<'data, str>; 12])
Twelve symbols for a solar calendar
This is an optimization to reduce data size.
Other(ZeroMap<'data, MonthCode, str>)
A calendar with an arbitrary number of months, potentially including leap months
Implementations§
Trait Implementations§
source§impl<'data> PartialEq for SymbolsV1<'data>
impl<'data> PartialEq for SymbolsV1<'data>
source§impl<'a> Yokeable<'a> for SymbolsV1<'static>
impl<'a> Yokeable<'a> for SymbolsV1<'static>
impl<'data> StructuralPartialEq for SymbolsV1<'data>
Auto Trait Implementations§
impl<'data> Freeze for SymbolsV1<'data>
impl<'data> RefUnwindSafe for SymbolsV1<'data>
impl<'data> Send for SymbolsV1<'data>
impl<'data> Sync for SymbolsV1<'data>
impl<'data> Unpin for SymbolsV1<'data>
impl<'data> UnwindSafe for SymbolsV1<'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