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.
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
sourceimpl Bake for GroupingSizesV1
impl Bake for GroupingSizesV1
sourcefn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
Returns a TokenStream
that would evaluate to self
. Read more
sourceimpl Clone for GroupingSizesV1
impl Clone for GroupingSizesV1
sourcefn clone(&self) -> GroupingSizesV1
fn clone(&self) -> GroupingSizesV1
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GroupingSizesV1
impl Debug for GroupingSizesV1
sourceimpl<'de> Deserialize<'de> for GroupingSizesV1
impl<'de> Deserialize<'de> for GroupingSizesV1
sourcefn 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
sourceimpl PartialEq<GroupingSizesV1> for GroupingSizesV1
impl PartialEq<GroupingSizesV1> for GroupingSizesV1
sourcefn eq(&self, other: &GroupingSizesV1) -> bool
fn eq(&self, other: &GroupingSizesV1) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GroupingSizesV1) -> bool
fn ne(&self, other: &GroupingSizesV1) -> bool
This method tests for !=
.
sourceimpl Serialize for GroupingSizesV1
impl Serialize for GroupingSizesV1
sourcefn 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
sourceimpl<'a> Yokeable<'a> for GroupingSizesV1
impl<'a> Yokeable<'a> for GroupingSizesV1
type Output = GroupingSizesV1
type Output = GroupingSizesV1
This type MUST be Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourcefn transform(&self) -> &<GroupingSizesV1 as Yokeable<'a>>::Output
fn transform(&self) -> &<GroupingSizesV1 as Yokeable<'a>>::Output
This method must cast self
between &'a Self<'static>
and &'a Self<'a>
. Read more
sourcefn transform_owned(self) -> <GroupingSizesV1 as Yokeable<'a>>::Output
fn transform_owned(self) -> <GroupingSizesV1 as Yokeable<'a>>::Output
This method must cast self
between Self<'static>
and Self<'a>
. Read more
sourceunsafe 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 more
sourcefn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut <GroupingSizesV1 as Yokeable<'a>>::Output),
fn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut <GroupingSizesV1 as Yokeable<'a>>::Output),
This method must cast self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read more
sourceimpl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
impl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
sourcefn 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<'a> IsCovariant<'a> for GroupingSizesV1
impl StructuralPartialEq for GroupingSizesV1
Auto Trait Implementations
impl RefUnwindSafe for GroupingSizesV1
impl Send for GroupingSizesV1
impl Sync for GroupingSizesV1
impl Unpin for GroupingSizesV1
impl UnwindSafe for GroupingSizesV1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more