[][src]Struct tbot::contexts::NewChatPhoto

pub struct NewChatPhoto<C> {
    pub bot: Arc<Bot<C>>,
    pub message_id: Id,
    pub from: Option<User>,
    pub date: i64,
    pub chat: Chat,
    pub photo: Vec<PhotoSize>,
}

The context for new_chat_photo handlers.

Fields

bot: Arc<Bot<C>>

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.

photo: Vec<PhotoSize>

The photo.

Trait Implementations

impl<'a, C: 'static> ChatMethods<'a, C> for NewChatPhoto<C>[src]

impl<C: Clone> Clone for NewChatPhoto<C>[src]

impl<C: Debug> Debug for NewChatPhoto<C>[src]

Auto Trait Implementations

impl<C> Send for NewChatPhoto<C> where
    C: Send + Sync

impl<C> Unpin for NewChatPhoto<C>

impl<C> Sync for NewChatPhoto<C> where
    C: Send + Sync

impl<C> !UnwindSafe for NewChatPhoto<C>

impl<C> !RefUnwindSafe for NewChatPhoto<C>

Blanket Implementations

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> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T