Struct currency_layer::CurrencyRates[][src]

pub struct CurrencyRates {
    pub timestamp: usize,
    pub quotes: HashMap<String, f64>,
}

Fields

Time of the request

Currency rates keyed by currency code

Trait Implementations

impl Debug for CurrencyRates
[src]

Formats the value using the given formatter. Read more

impl Clone for CurrencyRates
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations