Struct actix_telegram::methods::SendPhoto[][src]

pub struct SendPhoto {
    pub chat_id: ChatIdOrUsername,
    pub photo: InputFileOrString,
    pub caption: Option<String>,
    pub parse_mode: Option<String>,
    pub disable_notification: Option<bool>,
    pub reply_to_message_id: Option<Integer>,
    pub reply_markup: Option<ReplyMarkup>,
}

Use this method to send photos. On success, the sent Message is returned.

Fields

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. More info on Sending Files »

Photo caption (may also be used when resending photos by file_id), 0-200 characters

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

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

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

Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.

Trait Implementations

impl Debug for SendPhoto
[src]

Formats the value using the given formatter. Read more

impl ActixMessage for SendPhoto
[src]

The type of value that this message will resolved with if it is successful. Read more

impl Handler<SendPhoto> for TelegramApi
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations

impl Send for SendPhoto

impl !Sync for SendPhoto