pub enum YearNamesV1<'data> {
FixedEras(VarZeroVec<'data, str>),
VariableEras(ZeroMap<'data, PotentialUtf8, str>),
Cyclic(VarZeroVec<'data, str>),
}
Expand description
Names used for representing the year.
This uses a data marker attribute for length. The value is simply the number of
characters in the equivalent CLDR field syntax name, plus “s” for standalone contexts. For example,
“abbreviated” (e.g. MMM
) is 3
or 3s
depending on whether it is format or standalone
respectively.
The full list is:
- 3 is “abbreviated”
- 4 is “narrow”
- 5 is “wide”
- 6 is “short” (weekdays only)
📏 This item has a stack size of 48 bytes on the stable toolchain at release date.
Variants§
FixedEras(VarZeroVec<'data, str>)
This calendar has a small, fixed set of eras with numeric years, this stores the era names in chronological order.
See FormattableEra for a definition of what chronological order is in this context.
VariableEras(ZeroMap<'data, PotentialUtf8, str>)
This calendar has a variable set of eras with numeric years, this stores the era names mapped from era code to the name.
Only the Japanese calendars need this
Cyclic(VarZeroVec<'data, str>)
This calendar is cyclic (Chinese, Dangi), so it uses cyclic year names without any eras
Trait Implementations§
source§impl<'data> Bake for YearNamesV1<'data>
impl<'data> Bake for YearNamesV1<'data>
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl<'data> BakeSize for YearNamesV1<'data>
impl<'data> BakeSize for YearNamesV1<'data>
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
source§impl<'data> Clone for YearNamesV1<'data>
impl<'data> Clone for YearNamesV1<'data>
source§fn clone(&self) -> YearNamesV1<'data>
fn clone(&self) -> YearNamesV1<'data>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'data> Debug for YearNamesV1<'data>
impl<'data> Debug for YearNamesV1<'data>
source§impl<'de, 'data> Deserialize<'de> for YearNamesV1<'data>where
'de: 'data,
impl<'de, 'data> Deserialize<'de> for YearNamesV1<'data>where
'de: 'data,
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<YearNamesV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<YearNamesV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
source§impl<'data> PartialEq for YearNamesV1<'data>
impl<'data> PartialEq for YearNamesV1<'data>
source§impl<'data> Serialize for YearNamesV1<'data>
impl<'data> Serialize for YearNamesV1<'data>
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
source§impl<'a> Yokeable<'a> for YearNamesV1<'static>
impl<'a> Yokeable<'a> for YearNamesV1<'static>
source§type Output = YearNamesV1<'a>
type Output = YearNamesV1<'a>
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
source§fn transform_owned(self) -> <YearNamesV1<'static> as Yokeable<'a>>::Output
fn transform_owned(self) -> <YearNamesV1<'static> as Yokeable<'a>>::Output
source§unsafe fn make(
this: <YearNamesV1<'static> as Yokeable<'a>>::Output,
) -> YearNamesV1<'static>
unsafe fn make( this: <YearNamesV1<'static> as Yokeable<'a>>::Output, ) -> YearNamesV1<'static>
Self<'a>
’s lifetime. Read moresource§fn transform_mut<F>(&'a mut self, f: F)
fn transform_mut<F>(&'a mut self, f: F)
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresource§impl<'zf, 'zf_inner> ZeroFrom<'zf, YearNamesV1<'zf_inner>> for YearNamesV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, YearNamesV1<'zf_inner>> for YearNamesV1<'zf>
source§fn zero_from(this: &'zf YearNamesV1<'zf_inner>) -> YearNamesV1<'zf>
fn zero_from(this: &'zf YearNamesV1<'zf_inner>) -> YearNamesV1<'zf>
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for YearNamesV1<'data>
Auto Trait Implementations§
impl<'data> Freeze for YearNamesV1<'data>
impl<'data> RefUnwindSafe for YearNamesV1<'data>
impl<'data> Send for YearNamesV1<'data>
impl<'data> Sync for YearNamesV1<'data>
impl<'data> Unpin for YearNamesV1<'data>
impl<'data> UnwindSafe for YearNamesV1<'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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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