[][src]Enum grammers_tl_types::enums::SendMessageAction

pub enum SendMessageAction {
    SendMessageTypingAction(SendMessageTypingAction),
    SendMessageCancelAction(SendMessageCancelAction),
    SendMessageRecordVideoAction(SendMessageRecordVideoAction),
    SendMessageUploadVideoAction(SendMessageUploadVideoAction),
    SendMessageRecordAudioAction(SendMessageRecordAudioAction),
    SendMessageUploadAudioAction(SendMessageUploadAudioAction),
    SendMessageUploadPhotoAction(SendMessageUploadPhotoAction),
    SendMessageUploadDocumentAction(SendMessageUploadDocumentAction),
    SendMessageGeoLocationAction(SendMessageGeoLocationAction),
    SendMessageChooseContactAction(SendMessageChooseContactAction),
    SendMessageGamePlayAction(SendMessageGamePlayAction),
    SendMessageRecordRoundAction(SendMessageRecordRoundAction),
    SendMessageUploadRoundAction(SendMessageUploadRoundAction),
}

Variants

SendMessageTypingAction(SendMessageTypingAction)
SendMessageCancelAction(SendMessageCancelAction)
SendMessageRecordVideoAction(SendMessageRecordVideoAction)
SendMessageUploadVideoAction(SendMessageUploadVideoAction)
SendMessageRecordAudioAction(SendMessageRecordAudioAction)
SendMessageUploadAudioAction(SendMessageUploadAudioAction)
SendMessageUploadPhotoAction(SendMessageUploadPhotoAction)
SendMessageUploadDocumentAction(SendMessageUploadDocumentAction)
SendMessageGeoLocationAction(SendMessageGeoLocationAction)
SendMessageChooseContactAction(SendMessageChooseContactAction)
SendMessageGamePlayAction(SendMessageGamePlayAction)
SendMessageRecordRoundAction(SendMessageRecordRoundAction)
SendMessageUploadRoundAction(SendMessageUploadRoundAction)

Trait Implementations

impl Clone for SendMessageAction[src]

impl Debug for SendMessageAction[src]

impl Deserializable for SendMessageAction[src]

impl From<SendMessageCancelAction> for SendMessageAction[src]

impl From<SendMessageChooseContactAction> for SendMessageAction[src]

impl From<SendMessageGamePlayAction> for SendMessageAction[src]

impl From<SendMessageGeoLocationAction> for SendMessageAction[src]

impl From<SendMessageRecordAudioAction> for SendMessageAction[src]

impl From<SendMessageRecordRoundAction> for SendMessageAction[src]

impl From<SendMessageRecordVideoAction> for SendMessageAction[src]

impl From<SendMessageTypingAction> for SendMessageAction[src]

impl From<SendMessageUploadAudioAction> for SendMessageAction[src]

impl From<SendMessageUploadDocumentAction> for SendMessageAction[src]

impl From<SendMessageUploadPhotoAction> for SendMessageAction[src]

impl From<SendMessageUploadRoundAction> for SendMessageAction[src]

impl From<SendMessageUploadVideoAction> for SendMessageAction[src]

impl PartialEq<SendMessageAction> for SendMessageAction[src]

impl Serializable for SendMessageAction[src]

impl StructuralPartialEq for SendMessageAction[src]

impl TryFrom<SendMessageAction> for SendMessageCancelAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageChooseContactAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageUploadPhotoAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageUploadRoundAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageUploadVideoAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageGamePlayAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageGeoLocationAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageRecordAudioAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageRecordRoundAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageRecordVideoAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageTypingAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageUploadAudioAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SendMessageAction> for SendMessageUploadDocumentAction[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

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> 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.