[][src]Struct tgbot::methods::SendPhoto

pub struct SendPhoto { /* fields omitted */ }

Send photo

Methods

impl SendPhoto[src]

pub fn new<C, P>(chat_id: C, photo: P) -> Self where
    C: Into<ChatId>,
    P: Into<InputFile>, 
[src]

Creates a new SendPhoto with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • photo - Photo to send

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

Photo caption

May also be used when resending photos by file_id 0-1024 characters

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

Sets a parse mode

pub fn disable_notification(self, value: bool) -> Self[src]

Sends the message silently

Users will receive a notification with no sound

pub fn reply_to_message_id(self, value: Integer) -> Self[src]

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

pub fn reply_markup<R: Into<ReplyMarkup>>(
    self,
    value: R
) -> Result<Self, ReplyMarkupError>
[src]

Additional interface options

Trait Implementations

impl Debug for SendPhoto[src]

impl Method for SendPhoto[src]

type Response = Message

Type of successful result in API response

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> From<T> for T[src]

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.