[][src]Struct carapax::prelude::InlineQueryResultDocument

pub struct InlineQueryResultDocument { /* fields omitted */ }

Link to a file

By default, this file will be sent by the user with an optional caption Alternatively, you can use input_message_content to send a message with the specified content instead of the file Currently, only .PDF and .ZIP files can be sent using this method

Methods

impl InlineQueryResultDocument[src]

pub fn new<S>(
    id: S,
    title: S,
    document_url: S,
    mime_type: S
) -> InlineQueryResultDocument where
    S: Into<String>, 
[src]

Creates a new InlineQueryResultDocument with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • title - Title for the result
  • document_url - A valid URL for the file
  • mime_type - Mime type of the content of the file, either “application/pdf” or “application/zip”

pub fn caption<S>(self, caption: S) -> InlineQueryResultDocument where
    S: Into<String>, 
[src]

Caption of the document to be sent, 0-1024 characters

pub fn parse_mode(self, parse_mode: ParseMode) -> InlineQueryResultDocument[src]

Parse mode

pub fn description<S>(self, description: S) -> InlineQueryResultDocument where
    S: Into<String>, 
[src]

Short description of the result

pub fn reply_markup<I>(self, reply_markup: I) -> InlineQueryResultDocument where
    I: Into<InlineKeyboardMarkup>, 
[src]

Inline keyboard attached to the message

pub fn input_message_content(
    self,
    input_message_content: InputMessageContent
) -> InlineQueryResultDocument
[src]

Content of the message to be sent instead of the file

pub fn thumb_url<S>(self, thumb_url: S) -> InlineQueryResultDocument where
    S: Into<String>, 
[src]

URL of the thumbnail (jpeg only) for the file

pub fn thumb_width(self, thumb_width: i64) -> InlineQueryResultDocument[src]

Thumbnail width

pub fn thumb_height(self, thumb_height: i64) -> InlineQueryResultDocument[src]

Thumbnail height

Trait Implementations

impl From<InlineQueryResultDocument> for InlineQueryResult[src]

impl Serialize for InlineQueryResultDocument[src]

impl Debug for InlineQueryResultDocument[src]

impl Clone for InlineQueryResultDocument[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T