Struct telegram_bot_api::types::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: String
Two-letter ISO 3166-1 alpha-2 country code
state: String
State, if applicable
city: String
City
street_line1: String
First line for the address
street_line2: String
Second line for the address
post_code: String
Address post code
Implementations
Trait Implementations
sourceimpl Clone for ShippingAddress
impl Clone for ShippingAddress
sourcefn clone(&self) -> ShippingAddress
fn clone(&self) -> ShippingAddress
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ShippingAddress
impl Debug for ShippingAddress
sourceimpl<'de> Deserialize<'de> for ShippingAddress
impl<'de> Deserialize<'de> for ShippingAddress
sourcefn 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
sourceimpl Serialize for ShippingAddress
impl Serialize for ShippingAddress
Auto Trait Implementations
impl RefUnwindSafe for ShippingAddress
impl Send for ShippingAddress
impl Sync for ShippingAddress
impl Unpin for ShippingAddress
impl UnwindSafe for ShippingAddress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more