Struct bestbuy::order::Address [] [src]

pub struct Address {
    pub city: String,
    pub civility: String,
    pub company: String,
    pub country: String,
    pub country_iso_code: Option<String>,
    pub firstname: String,
    pub lastname: String,
    pub phone: String,
    pub phone_secondary: String,
    pub state: String,
    pub street_1: String,
    pub street_2: String,
    pub zip_code: Option<String>,
    pub additional_info: Option<String>,
}

Fields

Trait Implementations

impl Debug for Address
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Address

impl Sync for Address