pub struct UpdateBotShippingQuery {
pub query_id: i64,
pub user_id: i64,
pub payload: Vec<u8>,
pub shipping_address: PostAddress,
}Expand description
Read updateBotShippingQuery docs.
Generated from the following TL definition:
updateBotShippingQuery#b5aefd7d query_id:long user_id:long payload:bytes shipping_address:PostAddress = UpdateFields§
§query_id: i64§user_id: i64§payload: Vec<u8>§shipping_address: PostAddressTrait Implementations§
Source§impl Clone for UpdateBotShippingQuery
impl Clone for UpdateBotShippingQuery
Source§fn clone(&self) -> UpdateBotShippingQuery
fn clone(&self) -> UpdateBotShippingQuery
Returns a duplicate 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 UpdateBotShippingQuery
impl Debug for UpdateBotShippingQuery
Source§impl From<UpdateBotShippingQuery> for Update
impl From<UpdateBotShippingQuery> for Update
Source§fn from(x: UpdateBotShippingQuery) -> Self
fn from(x: UpdateBotShippingQuery) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateBotShippingQuery
impl Identifiable for UpdateBotShippingQuery
Source§const CONSTRUCTOR_ID: u32 = 3048144253
const CONSTRUCTOR_ID: u32 = 3048144253
The unique identifier for the type.
Source§impl PartialEq for UpdateBotShippingQuery
impl PartialEq for UpdateBotShippingQuery
Source§impl TryFrom<Update> for UpdateBotShippingQuery
impl TryFrom<Update> for UpdateBotShippingQuery
impl StructuralPartialEq for UpdateBotShippingQuery
Auto Trait Implementations§
impl Freeze for UpdateBotShippingQuery
impl RefUnwindSafe for UpdateBotShippingQuery
impl Send for UpdateBotShippingQuery
impl Sync for UpdateBotShippingQuery
impl Unpin for UpdateBotShippingQuery
impl UnsafeUnpin for UpdateBotShippingQuery
impl UnwindSafe for UpdateBotShippingQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more