[][src]Struct tg_bot_models::InlineQueryResultArticle

pub struct InlineQueryResultArticle {
    pub ty: String,
    pub id: String,
    pub title: String,
    pub input_message_content: InputMessageContent,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub url: Option<String>,
    pub hide_url: Option<bool>,
    pub description: Option<String>,
    pub thumb_url: Option<String>,
    pub thumb_width: Option<i64>,
    pub thumb_height: Option<i64>,
}

Represents a link to an article or web page.

Fields

ty: String

Type of the result, must be article

id: String

Unique identifier for this result, 1-64 Bytes

title: String

Title of the result

input_message_content: InputMessageContent

Content of the message to be sent

reply_markup: Option<InlineKeyboardMarkup>

Optional. Inline keyboard attached to the message

url: Option<String>

Optional. URL of the result

hide_url: Option<bool>

Optional. Pass True, if you don't want the URL to be shown in the message

description: Option<String>

Optional. Short description of the result

thumb_url: Option<String>

Optional. Url of the thumbnail for the result

thumb_width: Option<i64>

Optional. Thumbnail width

thumb_height: Option<i64>

Optional. Thumbnail height

Trait Implementations

impl PartialEq<InlineQueryResultArticle> for InlineQueryResultArticle[src]

impl Clone for InlineQueryResultArticle[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<InlineQueryResultArticle> for InlineQueryResultArticle[src]

impl Debug for InlineQueryResultArticle[src]

impl Serialize for InlineQueryResultArticle[src]

impl<'de> Deserialize<'de> for InlineQueryResultArticle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]