Struct icu::decimal::provider::GroupingSizesV1
source ยท pub struct GroupingSizesV1 {
pub primary: u8,
pub secondary: u8,
pub min_grouping: u8,
}
Expand description
A collection of settings expressing where to put grouping separators in a decimal number.
For example, 1,000,000
has two grouping separators, positioned along every 3 digits.
๐ง 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ยง
ยงprimary: u8
The size of the first (lowest-magnitude) group.
If 0, grouping separators will never be shown.
secondary: u8
The size of groups after the first group.
If 0, defaults to be the same as primary
.
min_grouping: u8
The minimum number of digits required before the first group. For example, if primary=3
and min_grouping=2
, grouping separators will be present on 10,000 and above.
Trait Implementationsยง
sourceยงimpl Bake for GroupingSizesV1
impl Bake for GroupingSizesV1
sourceยงfn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
sourceยงimpl BakeSize for GroupingSizesV1
impl BakeSize for GroupingSizesV1
sourceยงfn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
sourceยงimpl Clone for GroupingSizesV1
impl Clone for GroupingSizesV1
sourceยงfn clone(&self) -> GroupingSizesV1
fn clone(&self) -> GroupingSizesV1
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 GroupingSizesV1
impl Debug for GroupingSizesV1
sourceยงimpl<'de> Deserialize<'de> for GroupingSizesV1
impl<'de> Deserialize<'de> for GroupingSizesV1
sourceยงfn deserialize<__D>(
__deserializer: __D,
) -> Result<GroupingSizesV1, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GroupingSizesV1, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceยงimpl PartialEq for GroupingSizesV1
impl PartialEq for GroupingSizesV1
sourceยงimpl Serialize for GroupingSizesV1
impl Serialize for GroupingSizesV1
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,
Serialize this value into the given Serde serializer. Read more
sourceยงimpl<'a> Yokeable<'a> for GroupingSizesV1where
GroupingSizesV1: Sized,
impl<'a> Yokeable<'a> for GroupingSizesV1where
GroupingSizesV1: Sized,
sourceยงtype Output = GroupingSizesV1
type Output = GroupingSizesV1
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> <GroupingSizesV1 as Yokeable<'a>>::Output
fn transform_owned(self) -> <GroupingSizesV1 as Yokeable<'a>>::Output
sourceยงunsafe fn make(
this: <GroupingSizesV1 as Yokeable<'a>>::Output,
) -> GroupingSizesV1
unsafe fn make( this: <GroupingSizesV1 as Yokeable<'a>>::Output, ) -> GroupingSizesV1
This method can be used to cast away
Self<'a>
โs lifetime. Read moresourceยงfn transform_mut<F>(&'a mut self, f: F)
fn transform_mut<F>(&'a mut self, f: F)
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresourceยงimpl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
impl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
sourceยงfn zero_from(this: &'zf GroupingSizesV1) -> GroupingSizesV1
fn zero_from(this: &'zf GroupingSizesV1) -> GroupingSizesV1
Clone the other
C
into a struct that may retain references into C
.impl Copy for GroupingSizesV1
impl StructuralPartialEq for GroupingSizesV1
Auto Trait Implementationsยง
impl Freeze for GroupingSizesV1
impl RefUnwindSafe for GroupingSizesV1
impl Send for GroupingSizesV1
impl Sync for GroupingSizesV1
impl Unpin for GroupingSizesV1
impl UnwindSafe for GroupingSizesV1
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> 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)
๐ฌThis is a nightly-only experimental API. (
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>
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