pub struct Record {
Show 21 fields pub country_name: Box<str>, pub iso2: CountryCode, pub iso3: CountryCodeIso3, pub top_level_domain: Box<str>, pub fips: Box<str>, pub iso_mumeric: Box<str>, pub geo_name_id: Option<u32>, pub e164: u32, pub phone_code: Box<str>, pub continent: Box<str>, pub capital: Box<str>, pub time_zone_in_capital: Tz, pub currency: Box<str>, pub language_codes: Box<str>, pub languages: Box<str>, pub area: u32, pub internet_hosts: Option<u32>, pub internet_users: Option<u32>, pub phones_mobile: Option<u32>, pub phones_landline: Option<u32>, pub gdp: Option<u64>,
}

Fields

country_name: Box<str>iso2: CountryCodeiso3: CountryCodeIso3top_level_domain: Box<str>fips: Box<str>iso_mumeric: Box<str>geo_name_id: Option<u32>e164: u32phone_code: Box<str>continent: Box<str>capital: Box<str>time_zone_in_capital: Tzcurrency: Box<str>language_codes: Box<str>languages: Box<str>area: u32internet_hosts: Option<u32>internet_users: Option<u32>phones_mobile: Option<u32>phones_landline: Option<u32>gdp: Option<u64>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.