[][src]Struct steel_cent::formatting::FormatSpec

pub struct FormatSpec { /* fields omitted */ }

A specification of a currency format.

Methods

impl FormatSpec[src]

pub fn new(
    thousands_sep: char,
    decimal_sep: char,
    template: Vec<FormatPart>
) -> FormatSpec
[src]

Creates a new FormatSpec with no short symbol mappings.

pub fn with_short_symbol(
    &self,
    currency: Currency,
    symbol: String
) -> FormatSpec
[src]

Creates a clone with the given short symbol mapping added.

pub fn display_for<'a, 'b, T: FormattableMoney>(
    &'a self,
    money: &'b T
) -> MoneyDisplay<'b, 'a, T>
[src]

Creates a Display wrapper for the given money value using this spec.

assert_eq!("$1.00", format!("{}", us_style().display_for(&Money::of_major(USD, 1))));
assert_eq!("GBP1.00", format!("{}", us_style().display_for(&Money::of_major(GBP, 1))));

pub fn parser(&self) -> Parser[src]

Creates a Parser that will parse strings conforming to this FormatSpec.

assert_eq!(Ok(Money::of_major(USD, 1)), us_style().parser().parse("$1.00"));
assert_eq!(Ok(Money::of_major(GBP, 1)), us_style().parser().parse("GBP1.00"));

Trait Implementations

impl Clone for FormatSpec[src]

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

Performs copy-assignment from source. Read more

impl Eq for FormatSpec[src]

impl PartialEq<FormatSpec> for FormatSpec[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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