[][src]Struct tbot::contexts::EditedVideo

#[non_exhaustive]pub struct EditedVideo {
    pub bot: Arc<Bot>,
    pub message_id: Id,
    pub from: Option<User>,
    pub date: i64,
    pub chat: Chat,
    pub reply_to: Option<Message>,
    pub author_signature: Option<String>,
    pub edit_date: i64,
    pub reply_markup: Option<Keyboard>,
    pub video: Video,
    pub caption: Text,
    pub media_group_id: Option<String>,
}

The context for edited_video handlers.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
bot: Arc<Bot>

A bot for calling API without information inference.

message_id: Id

ID of the message.

from: Option<User>

The author of the message.

date: i64

The timestamp of the message.

chat: Chat

The chat to which the message was sent.

reply_to: Option<Message>

The replied message.

author_signature: Option<String>

The author's signature, if enabled for the channel.

edit_date: i64

The last time when the message was edited.

reply_markup: Option<Keyboard>

The inline keyboard attached to the message.

video: Video

The video.

caption: Text

The caption of the video.

media_group_id: Option<String>

The media group's ID.

Trait Implementations

impl Album for EditedVideo[src]

impl AnyText for EditedVideo[src]

impl Caption for EditedVideo[src]

impl Clone for EditedVideo[src]

impl Context for EditedVideo[src]

impl Debug for EditedVideo[src]

impl EditedMessage for EditedVideo[src]

impl Forwardable for EditedVideo[src]

impl MediaMessage for EditedVideo[src]

impl Message for EditedVideo[src]

impl Pinnable for EditedVideo[src]

impl Video for EditedVideo[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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