Enum num_format::Grouping
source · pub enum Grouping {
Standard,
Indian,
Posix,
}
Expand description
Type for specifying how digits are grouped together (e.g. 1,000,000 vs. 10,00,000 vs. 1000000).
Variants§
Standard
Digits are separated into groups of three (e.g. 10,000,000)
Indian
The first three digits are grouped together and all digits after that are separated into groups of two (e.g. 1,00,00,000)
Posix
No grouping (e.g. 10000000)
Trait Implementations§
source§impl PartialEq<Grouping> for Grouping
impl PartialEq<Grouping> for Grouping
impl Copy for Grouping
impl Eq for Grouping
impl StructuralEq for Grouping
impl StructuralPartialEq for Grouping
Auto Trait Implementations§
impl RefUnwindSafe for Grouping
impl Send for Grouping
impl Sync for Grouping
impl Unpin for Grouping
impl UnwindSafe for Grouping
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