pub struct UpdateNewInlineCallbackQuery {
pub id: i64,
pub sender_user_id: i32,
pub inline_message_id: String,
pub chat_instance: i64,
pub payload: CallbackQueryPayload,
}
Expand description
A new incoming callback query from a message sent via a bot; for bots only
Fields§
§id: i64
Unique query identifier
sender_user_id: i32
Identifier of the user who sent the query
inline_message_id: String
Identifier of the inline message, from which the query originated
chat_instance: i64
An identifier uniquely corresponding to the chat a message was sent to
payload: CallbackQueryPayload
Query payload
Trait Implementations§
Source§impl Clone for UpdateNewInlineCallbackQuery
impl Clone for UpdateNewInlineCallbackQuery
Source§fn clone(&self) -> UpdateNewInlineCallbackQuery
fn clone(&self) -> UpdateNewInlineCallbackQuery
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 UpdateNewInlineCallbackQuery
impl Debug for UpdateNewInlineCallbackQuery
Source§impl<'de> Deserialize<'de> for UpdateNewInlineCallbackQuery
impl<'de> Deserialize<'de> for UpdateNewInlineCallbackQuery
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
Auto Trait Implementations§
impl Freeze for UpdateNewInlineCallbackQuery
impl RefUnwindSafe for UpdateNewInlineCallbackQuery
impl Send for UpdateNewInlineCallbackQuery
impl Sync for UpdateNewInlineCallbackQuery
impl Unpin for UpdateNewInlineCallbackQuery
impl UnwindSafe for UpdateNewInlineCallbackQuery
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