pub struct UpdateBotShippingQuery {
pub query_id: i64,
pub user_id: i64,
pub payload: Vec<u8>,
pub shipping_address: PostAddress,
}Expand description
Generated from:
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 Deserializable for UpdateBotShippingQuery
impl Deserializable for UpdateBotShippingQuery
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
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 = 0xb5aefd7d
const CONSTRUCTOR_ID: u32 = 0xb5aefd7d
The constructor ID as specified in the TL schema.
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