Struct iso4217::CurrencyCode[][src]

pub struct CurrencyCode {
    pub alpha3: &'static str,
    pub countries: &'static [&'static str],
    pub exp: i8,
    pub name: &'static str,
    pub num: &'static str,
}

Data for each Currency Code defined by ISO 4217.

Fields

3-letter code of the currency

Vector of Alpha2 codes for the countries that use the currency

Number of decimals

Fully readable and used name

Assigned 3-digit numeric code

Trait Implementations

impl Clone for CurrencyCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CurrencyCode
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations