Struct claude::Postfix [] [src]

pub struct Postfix<'a> { /* fields omitted */ }

Implements Display with the currency symbol at the end.

Methods from Deref<Target = Currency>

Returns an object that implements Display for different methods of printing currency.

Returns an object that implements Display for different methods of printing currency.

Returns the inner value

Trait Implementations

impl<'a> Deref for Postfix<'a>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a> Display for Postfix<'a>
[src]

Allows Currencies to be displayed as Strings. The format includes no comma delimiting with a two digit precision decimal.

Examples

use claude::Currency;

assert!(Currency(None, 1210).postfix().to_string() == "12,10");

println!("{}", Currency(Some('€'), 100099).postfix());

The last line prints the following: text "1000,99€"

Formats the value using the given formatter. Read more