Struct telegram_bot2::models::ShippingAddress
source · 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,
}Expand description
This object represents a shipping address.
Fields§
§country_code: StringTwo-letter ISO 3166-1 alpha-2 country code
state: StringState, if applicable
city: StringCity
street_line1: StringFirst line for the address
street_line2: StringSecond line for the address
post_code: StringAddress post code
Trait Implementations§
source§impl Clone for ShippingAddress
impl Clone for ShippingAddress
source§fn clone(&self) -> ShippingAddress
fn clone(&self) -> ShippingAddress
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ShippingAddress
impl Debug for ShippingAddress
source§impl<'de> Deserialize<'de> for ShippingAddress
impl<'de> Deserialize<'de> for ShippingAddress
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more