[][src]Struct rutebot::requests::SendDocument

pub struct SendDocument<'a> {
    pub chat_id: ChatId<'a>,
    pub document: FileKind<'a>,
    pub caption: Option<&'a str>,
    pub disable_notification: bool,
    pub parse_mode: Option<ParseMode>,
    pub reply_to_message_id: Option<i64>,
    pub reply_markup: Option<ReplyMarkup<'a>>,
}

Use this struct to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future

Fields

chat_id: ChatId<'a>

Identifier for the target chat

document: FileKind<'a>

File to send.

caption: Option<&'a str>

Document caption (may also be used when resending documents by file_id), 0-1024 characters

disable_notification: bool

Sends the message silently. Users will receive a notification with no sound.

parse_mode: Option<ParseMode>

Send ParseMode::Markdown or ParseMode::Html, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.

reply_to_message_id: Option<i64>

If the message is a reply, ID of the original message

reply_markup: Option<ReplyMarkup<'a>>

Additional interface options.

Methods

impl<'a> SendDocument<'a>[src]

pub fn new(chat_id: impl Into<ChatId<'a>>, document: FileKind<'a>) -> Self[src]

pub fn new_reply(
    chat_id: impl Into<ChatId<'a>>,
    document: FileKind<'a>,
    reply_to_message_id: i64
) -> Self
[src]

Trait Implementations

impl<'a> Request for SendDocument<'a>[src]

type ResponseType = Message

impl<'a> Clone for SendDocument<'a>[src]

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

Performs copy-assignment from source. Read more

impl<'a> Debug for SendDocument<'a>[src]

impl<'a> Serialize for SendDocument<'a>[src]

Auto Trait Implementations

impl<'a> Send for SendDocument<'a>

impl<'a> Sync for SendDocument<'a>

Blanket Implementations

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

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, 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]

impl<T> Erased for T