pub struct AnswerCallbackQuery { /* private fields */ }
Expand description
Use this method to send answers to callback queries sent from inline keyboards
. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, true
is returned.
Alternatively, the user can be redirected to the specified Game URL. For this option to work, you must first create a game for your bot via @BotFather and accept the terms. Otherwise, you may use links like
t.me/your_bot?start=XXXX
that open your bot with a parameter
Trait Implementations§
Source§impl Clone for AnswerCallbackQuery
impl Clone for AnswerCallbackQuery
Source§fn clone(&self) -> AnswerCallbackQuery
fn clone(&self) -> AnswerCallbackQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnswerCallbackQuery
impl Debug for AnswerCallbackQuery
Source§impl<'de> Deserialize<'de> for AnswerCallbackQuery
impl<'de> Deserialize<'de> for AnswerCallbackQuery
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 AnswerCallbackQuery
impl RefUnwindSafe for AnswerCallbackQuery
impl Send for AnswerCallbackQuery
impl Sync for AnswerCallbackQuery
impl Unpin for AnswerCallbackQuery
impl UnwindSafe for AnswerCallbackQuery
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