Struct telegram_bot_ars::types::ShippingQuery
source · pub struct ShippingQuery {
pub id: CallbackQueryId,
pub from: User,
pub invoice_payload: String,
pub shipping_address: ShippingAddress,
}Expand description
This object contains information about an incoming shipping query.
Fields§
§id: CallbackQueryIdUnique query identifier
from: UserUser who sent the query
invoice_payload: StringBot specified invoice payload
shipping_address: ShippingAddressUser specified shipping address
Trait Implementations§
source§impl Clone for ShippingQuery
impl Clone for ShippingQuery
source§fn clone(&self) -> ShippingQuery
fn clone(&self) -> ShippingQuery
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 ShippingQuery
impl Debug for ShippingQuery
source§impl<'de> Deserialize<'de> for ShippingQuery
impl<'de> Deserialize<'de> for ShippingQuery
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ShippingQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ShippingQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ShippingQuery> for ShippingQuery
impl PartialEq<ShippingQuery> for ShippingQuery
source§fn eq(&self, other: &ShippingQuery) -> bool
fn eq(&self, other: &ShippingQuery) -> bool
source§impl PartialOrd<ShippingQuery> for ShippingQuery
impl PartialOrd<ShippingQuery> for ShippingQuery
source§fn partial_cmp(&self, other: &ShippingQuery) -> Option<Ordering>
fn partial_cmp(&self, other: &ShippingQuery) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more