Struct teloxide_core::payloads::AnswerInlineQuery
source · [−]pub struct AnswerInlineQuery {
pub inline_query_id: String,
pub results: Vec<InlineQueryResult>,
pub cache_time: Option<u32>,
pub is_personal: Option<bool>,
pub next_offset: Option<String>,
pub switch_pm_text: Option<String>,
pub switch_pm_parameter: Option<String>,
}Expand description
Use this method to send answers to an inline query. On success, True is returned. No more than 50 results per query are allowed.
Fields
inline_query_id: StringUnique identifier for the answered query
results: Vec<InlineQueryResult>A JSON-serialized array of results for the inline query
cache_time: Option<u32>The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.
is_personal: Option<bool>Pass True, if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query
next_offset: Option<String>Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don’t support pagination. Offset length can’t exceed 64 bytes.
switch_pm_text: Option<String>If passed, clients will display a button with specified text that switches the user to a private chat with the bot and sends the bot a start message with the parameter switch_pm_parameter
switch_pm_parameter: Option<String>Deep-linking parameter for the /start message sent to the bot when user presses the switch button. 1-64 characters, only A-Z, a-z, 0-9, _ and - are allowed.
Example: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a ‘Connect your YouTube account’ button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a switch_inline button so that the user can easily return to the chat where they wanted to use the bot’s inline capabilities.
Implementations
sourceimpl AnswerInlineQuery
impl AnswerInlineQuery
pub fn new(
inline_query_id: impl Into<String>,
results: impl IntoIterator<Item = InlineQueryResult>
) -> Self
Trait Implementations
sourceimpl Clone for AnswerInlineQuery
impl Clone for AnswerInlineQuery
sourcefn clone(&self) -> AnswerInlineQueryⓘNotable traits for AnswerInlineQueryimpl Payload for AnswerInlineQuery type Output = True;
fn clone(&self) -> AnswerInlineQueryⓘNotable traits for AnswerInlineQueryimpl Payload for AnswerInlineQuery type Output = True;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AnswerInlineQuery
impl Debug for AnswerInlineQuery
sourceimpl PartialEq<AnswerInlineQuery> for AnswerInlineQuery
impl PartialEq<AnswerInlineQuery> for AnswerInlineQuery
sourcefn eq(&self, other: &AnswerInlineQuery) -> bool
fn eq(&self, other: &AnswerInlineQuery) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AnswerInlineQuery) -> bool
fn ne(&self, other: &AnswerInlineQuery) -> bool
This method tests for !=.
sourceimpl Payload for AnswerInlineQuery
impl Payload for AnswerInlineQuery
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g. GetUpdates with
big timeout), the minimum timeout that should be used. Read more
sourceimpl Serialize for AnswerInlineQuery
impl Serialize for AnswerInlineQuery
impl StructuralPartialEq for AnswerInlineQuery
Auto Trait Implementations
impl RefUnwindSafe for AnswerInlineQuery
impl Send for AnswerInlineQuery
impl Sync for AnswerInlineQuery
impl Unpin for AnswerInlineQuery
impl UnwindSafe for AnswerInlineQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Erasable for T
impl<T> Erasable for T
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
