pub enum ChatAction {
Show 15 variants Cancel(ChatActionCancel), ChoosingContact(ChatActionChoosingContact), ChoosingLocation(ChatActionChoosingLocation), ChoosingSticker(ChatActionChoosingSticker), RecordingVideo(ChatActionRecordingVideo), RecordingVideoNote(ChatActionRecordingVideoNote), RecordingVoiceNote(ChatActionRecordingVoiceNote), StartPlayingGame(ChatActionStartPlayingGame), Typing(ChatActionTyping), UploadingDocument(ChatActionUploadingDocument), UploadingPhoto(ChatActionUploadingPhoto), UploadingVideo(ChatActionUploadingVideo), UploadingVideoNote(ChatActionUploadingVideoNote), UploadingVoiceNote(ChatActionUploadingVoiceNote), WatchingAnimations(ChatActionWatchingAnimations), // some variants omitted
}
Expand description

Describes the different types of activity in a chat

Variants

Cancel(ChatActionCancel)

The user has canceled the previous action

ChoosingContact(ChatActionChoosingContact)

The user is picking a contact to send

ChoosingLocation(ChatActionChoosingLocation)

The user is picking a location or venue to send

ChoosingSticker(ChatActionChoosingSticker)

The user is picking a sticker to send

RecordingVideo(ChatActionRecordingVideo)

The user is recording a video

RecordingVideoNote(ChatActionRecordingVideoNote)

The user is recording a video note

RecordingVoiceNote(ChatActionRecordingVoiceNote)

The user is recording a voice note

StartPlayingGame(ChatActionStartPlayingGame)

The user has started to play a game

Typing(ChatActionTyping)

The user is typing a message

UploadingDocument(ChatActionUploadingDocument)

The user is uploading a document

UploadingPhoto(ChatActionUploadingPhoto)

The user is uploading a photo

UploadingVideo(ChatActionUploadingVideo)

The user is uploading a video

UploadingVideoNote(ChatActionUploadingVideoNote)

The user is uploading a video note

UploadingVoiceNote(ChatActionUploadingVoiceNote)

The user is uploading a voice note

WatchingAnimations(ChatActionWatchingAnimations)

The user is watching animations sent by the other party by clicking on an animated emoji

Implementations

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.