[][src]Struct num_format::CustomFormat

pub struct CustomFormat { /* fields omitted */ }

Type for representing your own custom formats. Implements Format.

Example

use num_format::{Buffer, Error, CustomFormat, Grouping};

fn main() -> Result<(), Error> {
    let format = CustomFormat::builder()
        .grouping(Grouping::Indian)
        .minus_sign("🙌")
        .separator("😀")
        .build()?;

    let mut buf = Buffer::new();
    buf.write_formatted(&(-1000000), &format);
    assert_eq!("🙌10😀00😀000", buf.as_str());

    Ok(())
}

Methods

impl CustomFormat[src]

pub fn builder() -> CustomFormatBuilder[src]

Constructs a CustomFormatBuilder.

pub fn into_builder(self) -> CustomFormatBuilder[src]

Turns self into a CustomFormatBuilder.

pub fn decimal(&self) -> &str[src]

Returns this format's representation of decimal points.

pub fn grouping(&self) -> Grouping[src]

Returns this format's Grouping, which governs how digits are separated (see Grouping).

pub fn infinity(&self) -> &str[src]

Returns this format's representation of infinity.

pub fn minus_sign(&self) -> &str[src]

Returns this format's representation of minus signs.

pub fn nan(&self) -> &str[src]

Returns this format's representation of NaN.

pub fn plus_sign(&self) -> &str[src]

Returns this format's representation of plus signs.

pub fn separator(&self) -> &str[src]

Returns this format's representation of separators.

Trait Implementations

impl Format for CustomFormat[src]

impl Default for CustomFormat[src]

fn default() -> Self[src]

Returns a CustomFormat with settings equal to Locale::en.

impl Clone for CustomFormat[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<Locale> for CustomFormat[src]

impl From<CustomFormat> for CustomFormatBuilder[src]

impl Eq for CustomFormat[src]

impl PartialEq<CustomFormat> for CustomFormat[src]

impl Debug for CustomFormat[src]

impl Hash for CustomFormat[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.