pub struct CompactDecimalPatternDataV1<'data> {
pub patterns: ZeroMap2d<'data, i8, Count, PatternULE>,
}
Expand description
Compact Decimal Pattern V1 data struct.
As in CLDR, this is a mapping from type (a power of ten, corresponding to the magnitude of the number being formatted) and count (a plural case or an explicit 1) to a pattern.
However, plural cases that are identical to the other case are omitted, thus given
(1000, one) ↦ 0K, (1000, other) ↦ 0K
only
(1000, other) ↦ 0K
is stored.
Further, if all plural cases are compatible across consecutive types, the larger types are omitted, thus given
(1000, other) ↦ 0K, (10000, other) ↦ 00K, (100000, other) ↦ 000K
only
(1000, other) ↦ 0K
is stored.
Finally, the pattern indicating noncompact notation for the first few powers of ten is omitted; that is, there is an implicit (1, other) ↦ 0.
Fields§
§patterns: ZeroMap2d<'data, i8, Count, PatternULE>
A map keyed on log10 of the CLDR type
attribute and the CLDR count
attribute.
Trait Implementations§
source§impl<'data> Bake for CompactDecimalPatternDataV1<'data>
impl<'data> Bake for CompactDecimalPatternDataV1<'data>
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl<'data> BakeSize for CompactDecimalPatternDataV1<'data>
impl<'data> BakeSize for CompactDecimalPatternDataV1<'data>
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
source§impl<'data> Clone for CompactDecimalPatternDataV1<'data>
impl<'data> Clone for CompactDecimalPatternDataV1<'data>
source§fn clone(&self) -> CompactDecimalPatternDataV1<'data>
fn clone(&self) -> CompactDecimalPatternDataV1<'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 CompactDecimalPatternDataV1<'data>
impl<'data> Debug for CompactDecimalPatternDataV1<'data>
source§impl<'data> Default for CompactDecimalPatternDataV1<'data>
impl<'data> Default for CompactDecimalPatternDataV1<'data>
source§fn default() -> CompactDecimalPatternDataV1<'data>
fn default() -> CompactDecimalPatternDataV1<'data>
source§impl<'de, 'data> Deserialize<'de> for CompactDecimalPatternDataV1<'data>where
'de: 'data,
impl<'de, 'data> Deserialize<'de> for CompactDecimalPatternDataV1<'data>where
'de: 'data,
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompactDecimalPatternDataV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompactDecimalPatternDataV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
source§impl<'data> PartialEq for CompactDecimalPatternDataV1<'data>
impl<'data> PartialEq for CompactDecimalPatternDataV1<'data>
source§fn eq(&self, other: &CompactDecimalPatternDataV1<'data>) -> bool
fn eq(&self, other: &CompactDecimalPatternDataV1<'data>) -> bool
self
and other
values to be equal, and is used by ==
.source§impl<'data> Serialize for CompactDecimalPatternDataV1<'data>
impl<'data> Serialize for CompactDecimalPatternDataV1<'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 CompactDecimalPatternDataV1<'static>
impl<'a> Yokeable<'a> for CompactDecimalPatternDataV1<'static>
source§type Output = CompactDecimalPatternDataV1<'a>
type Output = CompactDecimalPatternDataV1<'a>
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
source§fn transform(
&'a self,
) -> &'a <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output
fn transform( &'a self, ) -> &'a <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output
source§fn transform_owned(
self,
) -> <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output
fn transform_owned( self, ) -> <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output
source§unsafe fn make(
this: <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output,
) -> CompactDecimalPatternDataV1<'static>
unsafe fn make( this: <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output, ) -> CompactDecimalPatternDataV1<'static>
Self<'a>
’s lifetime. Read moresource§fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <CompactDecimalPatternDataV1<'static> as Yokeable<'a>>::Output),
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresource§impl<'zf, 'zf_inner> ZeroFrom<'zf, CompactDecimalPatternDataV1<'zf_inner>> for CompactDecimalPatternDataV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, CompactDecimalPatternDataV1<'zf_inner>> for CompactDecimalPatternDataV1<'zf>
source§fn zero_from(
this: &'zf CompactDecimalPatternDataV1<'zf_inner>,
) -> CompactDecimalPatternDataV1<'zf>
fn zero_from( this: &'zf CompactDecimalPatternDataV1<'zf_inner>, ) -> CompactDecimalPatternDataV1<'zf>
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for CompactDecimalPatternDataV1<'data>
Auto Trait Implementations§
impl<'data> Freeze for CompactDecimalPatternDataV1<'data>
impl<'data> RefUnwindSafe for CompactDecimalPatternDataV1<'data>
impl<'data> Send for CompactDecimalPatternDataV1<'data>
impl<'data> Sync for CompactDecimalPatternDataV1<'data>
impl<'data> Unpin for CompactDecimalPatternDataV1<'data>
impl<'data> UnwindSafe for CompactDecimalPatternDataV1<'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