pub struct BigNumInt(pub usize);
Expand description
A wrapper over integers where Display
formats the number suffixed with a multiplier
(e.g. M
or G
for millions or billions). This differs from BigNumFloat
because it will
never output a decimal number of values.
Tuple Fields§
§0: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BigNumInt
impl RefUnwindSafe for BigNumInt
impl Send for BigNumInt
impl Sync for BigNumInt
impl Unpin for BigNumInt
impl UnwindSafe for BigNumInt
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