pub struct Formatter { /* private fields */ }
Expand description
The number formatter configurations. See the module documentation for use.
Formatter
has a FromStr
implementation that can parse a string into a formatter using a
specific grammar. Please consult the parsing section in the module
documentation.
Implementations§
Source§impl Formatter
impl Formatter
Sourcepub fn new() -> Self
pub fn new() -> Self
Construct a new formatter.
No scaling is set, so this is only does a single allocation for the buffer.
§Example
let mut f = Formatter::new();
assert_eq!(f.fmt(12345.6789), "12345.6789");
Sourcepub fn currency(prefix: &str) -> Result
pub fn currency(prefix: &str) -> Result
Create a formatter that formats numbers as a currency.
§Example
let mut f = Formatter::currency("$").unwrap();
assert_eq!(f.fmt(12345.6789), "$12,345.67");
assert_eq!(f.fmt(1234_f64), "$1,234.0");
Sourcepub fn percentage() -> Self
pub fn percentage() -> Self
Create a formatter that formats numbers as a percentage.
§Example
let mut f = Formatter::percentage();
assert_eq!(f.fmt(0.678912), "67.8912%");
assert_eq!(f.fmt(1.23), "123.0%");
assert_eq!(f.fmt(1.2), "120.0%");
f = f.precision(Precision::Decimals(2));
assert_eq!(f.fmt(0.01234), "1.23%");
Sourcepub fn convert(self, f: fn(_: f64) -> f64) -> Self
pub fn convert(self, f: fn(_: f64) -> f64) -> Self
Set the value converter.
Use a converter to transform the input number into another number. This is done before all steps and the number follows the same procedure as normal. A good example of a use of a converter is to make a percentage number by always multiplying by 100.
Sourcepub fn build_scales(self, base: u16, units: Vec<&'static str>) -> Result
pub fn build_scales(self, base: u16, units: Vec<&'static str>) -> Result
Set the scaling via Scales::new
.
Sourcepub fn separator<S: Into<Option<char>>>(self, sep: S) -> Result
pub fn separator<S: Into<Option<char>>>(self, sep: S) -> Result
Set the thousands separator.
If separator is not a single byte, an error is returned.
If the separator is a period .
, this signals to use a comma for the decimal marker.
§Example
let mut f = Formatter::new().separator(',').unwrap(); // use a comma
assert_eq!(f.fmt(12345.67), "12,345.67");
f = f.separator(' ').unwrap(); // use a space
assert_eq!(f.fmt(12345.67), "12 345.67");
f = f.separator(None).unwrap(); // no separator
assert_eq!(f.fmt(12345.67), "12345.67");
f = f.separator('.').unwrap(); // use a period separator and comma for decimal
assert_eq!(f.fmt(12345.67), "12.345,67");
Sourcepub fn comma(self, comma: bool) -> Self
pub fn comma(self, comma: bool) -> Self
Set the comma option.
If set to true it will use a comma instead of a period. If a comma is the separator, a period will be used instead.
§Example
let mut f = Formatter::new();
assert_eq!(f.fmt(12345.67), "12345.67");
f = f.comma(true);
assert_eq!(f.fmt(12345.67), "12345,67");
f = f.separator('.').unwrap();
assert_eq!(f.fmt(12345.67), "12.345,67");
Sourcepub fn prefix(self, prefix: &str) -> Result
pub fn prefix(self, prefix: &str) -> Result
Sets the prefix.
If the prefix is longer than the supported length, an error is returned.
Sourcepub fn suffix(self, suffix: &str) -> Result
pub fn suffix(self, suffix: &str) -> Result
Set the suffix.
If the suffix is longer than the supported length, an error is returned.