Struct telegram_typings::ShippingAddress [] [src]

pub struct ShippingAddress {
    pub country_code: String,
    pub state: String,
    pub city: String,
    pub street_line1: String,
    pub street_line2: String,
    pub post_code: String,
}

This object represents a shipping address.

Fields

ISO 3166-1 alpha-2 country code

State, if applicable

City

First line for the address

Second line for the address

Address post code

Trait Implementations

impl Debug for ShippingAddress
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ShippingAddress
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations