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 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 PartialEq for GroupingSizesV1
impl PartialEq for GroupingSizesV1
Source§impl<'a> Yokeable<'a> for GroupingSizesV1where
Self: Sized,
impl<'a> Yokeable<'a> for GroupingSizesV1where
Self: 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) -> Self::Output
fn transform_owned(self) -> Self::Output
Source§impl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
impl<'zf> ZeroFrom<'zf, GroupingSizesV1> for GroupingSizesV1
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