[][src]Struct tg_botapi::methods::AnswerInlineQuery

pub struct AnswerInlineQuery {
    pub inline_query_id: String,
    pub results: Vec<InlineQueryResult>,
    pub cache_time: Option<i64>,
    pub is_personal: Option<bool>,
    pub next_offset: Option<String>,
    pub switch_pm_text: Option<String>,
    pub switch_pm_parameter: Option<String>,
}

Fields

inline_query_id: Stringresults: Vec<InlineQueryResult>cache_time: Option<i64>is_personal: Option<bool>next_offset: Option<String>switch_pm_text: Option<String>switch_pm_parameter: Option<String>

Methods

impl AnswerInlineQuery[src]

pub fn new(id: String, results: Vec<InlineQueryResult>) -> AnswerInlineQuery[src]

pub fn add(&mut self, result: impl Into<InlineQueryResult>)[src]

Trait Implementations

impl TgMethod for AnswerInlineQuery[src]

impl Debug for AnswerInlineQuery[src]

impl Serialize for AnswerInlineQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<'a, T> Captures<'a> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]