[][src]Struct rutebot::requests::SendMediaGroup

pub struct SendMediaGroup<'a> {
    pub chat_id: ChatId<'a>,
    pub media: Vec<InputMediaPhotoOrVideo<'a>>,
    pub disable_notification: bool,
    pub reply_to_message_id: Option<i64>,
}

Use this struct to send a group of photos or videos as an album. On success, an array of the sent Messages is returned.

Fields

chat_id: ChatId<'a>

Identifier for the target chat

media: Vec<InputMediaPhotoOrVideo<'a>>

Photos and videos to be sent, must include 2–10 items

disable_notification: bool

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

reply_to_message_id: Option<i64>

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

Methods

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

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

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

Trait Implementations

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

type ResponseType = Vec<Message>

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

impl<'a> Send for SendMediaGroup<'a>

impl<'a> Sync for SendMediaGroup<'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