[][src]Struct monet::Rates

pub struct Rates { /* fields omitted */ }

Methods

impl Rates[src]

pub fn new() -> Self[src]

Creates a new Rates struct and populates it from

pub fn with_rates(map: HashMap<CurrencyCode, CurrencyAmount>) -> Self[src]

Construct a Rates struct with given rates.

pub fn worth(&self, code: CurrencyCode) -> Option<CurrencyAmount>[src]

Get the worth of a currency as an CurrencyAmount. The worth could be seen as "how many base units are needed to make one of this". If a USD is worth 1_000_000 and a CHF is worth 2_000_000, that means that 2 USD are needed to make 1 CHF.

Trait Implementations

impl Clone for Rates[src]

impl Default for Rates[src]

impl Debug for Rates[src]

Auto Trait Implementations

impl Send for Rates

impl Sync for Rates

impl Unpin for Rates

impl UnwindSafe for Rates

impl RefUnwindSafe for Rates

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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