[][src]Struct telexide::api::types::InlineQueryResultGif

pub struct InlineQueryResultGif {
    pub id: String,
    pub gif_url: String,
    pub thumb_url: String,
    pub gif_width: Option<i64>,
    pub gif_height: Option<i64>,
    pub gif_duration: Option<i64>,
    pub thumb_mime_type: Option<String>,
    pub title: Option<String>,
    pub caption: Option<String>,
    pub input_message_content: Option<InputMessageContent>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub parse_mode: Option<ParseMode>,
    pub caption_entities: Option<Vec<MessageEntity>>,
}

Represents a link to an animated GIF file. By default, this animated GIF file will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation.

Fields

id: String

Unique identifier for this result, 1-64 Bytes

gif_url: String

A valid URL for the GIF file. File size must not exceed 1MB

thumb_url: String

URL of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the result

gif_width: Option<i64>

Width of the GIF

gif_height: Option<i64>

Height of the GIF

gif_duration: Option<i64>

Duration of the GIF

thumb_mime_type: Option<String>

MIME type of the thumbnail, must be one of “image/jpeg”, “image/gif”, or “video/mp4”. Defaults to “image/jpeg”

title: Option<String>

Title of the result

caption: Option<String>

Caption of the gif to be sent, 0-1024 characters after entities parsing

input_message_content: Option<InputMessageContent>

Content of the message to be sent instead of the gif

reply_markup: Option<InlineKeyboardMarkup>

Inline keyboard attached to the message

parse_mode: Option<ParseMode>

Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.

caption_entities: Option<Vec<MessageEntity>>

List of special entities that appear in the caption, which can be specified instead of parse_mode

Trait Implementations

impl Clone for InlineQueryResultGif[src]

impl Debug for InlineQueryResultGif[src]

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

impl PartialEq<InlineQueryResultGif> for InlineQueryResultGif[src]

impl Serialize for InlineQueryResultGif[src]

impl StructuralPartialEq for InlineQueryResultGif[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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> UnsafeAny for T where
    T: Any