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