pub struct Scales { /* private fields */ }
Expand description
Scale numbers.
Implementations§
Source§impl Scales
impl Scales
Sourcepub fn new(base: u16, units: Vec<&'static str>) -> Result<Self, Error>
pub fn new(base: u16, units: Vec<&'static str>) -> Result<Self, Error>
Create a new scale.
If a unit is longer than the supported length, an error will be returned.
Sourcepub fn short() -> Self
pub fn short() -> Self
The default scaling method.
Based on a short scale
the scaling uses base 1000
. The units are meant to be used to denote magnitude of the
number, so the empty base is empty.
§Example
let mut f = Formatter::default()
.scales(Scales::short())
.precision(Precision::Decimals(1));
assert_eq!(f.fmt(12.34e0), "12.3");
assert_eq!(f.fmt(12.34e3), "12.3 K");
assert_eq!(f.fmt(12.34e6), "12.3 M");
assert_eq!(f.fmt(12.34e9), "12.3 B");
assert_eq!(f.fmt(12.34e12), "12.3 T");
assert_eq!(f.fmt(12.34e15), "12.3 P");
assert_eq!(f.fmt(12.34e18), "12.3 E");
assert_eq!(f.fmt(12.34e21), "12.3 Z");
assert_eq!(f.fmt(12.34e24), "12.3 Y");
assert_eq!(f.fmt(12.34e27), "12,339.9 Y");
Sourcepub fn binary() -> Self
pub fn binary() -> Self
Create a binary scale.
The binary scale
steps with base 1024
. It is intended for use as a units prefix, so the empty base
contains a space.
§Example
let mut f = Formatter::new().scales(Scales::binary());
assert_eq!(f.fmt(1024.0 * 1024.0), "1.0 Mi");
assert_eq!(f.fmt(3.14 * 1024.0 * 1024.0), "3.14 Mi");
Sourcepub fn into_inner(self) -> (u16, Vec<&'static str>)
pub fn into_inner(self) -> (u16, Vec<&'static str>)
Extract the (base, units)
.
Trait Implementations§
impl Eq for Scales
impl StructuralPartialEq for Scales
Auto Trait Implementations§
impl Freeze for Scales
impl RefUnwindSafe for Scales
impl Send for Scales
impl Sync for Scales
impl Unpin for Scales
impl UnwindSafe for Scales
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