pub enum ChatAction {
Show 13 variants
ChatActionTyping(ChatActionTyping),
ChatActionRecordingVideo(ChatActionRecordingVideo),
ChatActionUploadingVideo(ChatActionUploadingVideo),
ChatActionRecordingVoiceNote(ChatActionRecordingVoiceNote),
ChatActionUploadingVoiceNote(ChatActionUploadingVoiceNote),
ChatActionUploadingPhoto(ChatActionUploadingPhoto),
ChatActionUploadingDocument(ChatActionUploadingDocument),
ChatActionChoosingLocation(ChatActionChoosingLocation),
ChatActionChoosingContact(ChatActionChoosingContact),
ChatActionStartPlayingGame(ChatActionStartPlayingGame),
ChatActionRecordingVideoNote(ChatActionRecordingVideoNote),
ChatActionUploadingVideoNote(ChatActionUploadingVideoNote),
ChatActionCancel(ChatActionCancel),
}
Expand description
Variants§
ChatActionTyping(ChatActionTyping)
ChatActionRecordingVideo(ChatActionRecordingVideo)
ChatActionUploadingVideo(ChatActionUploadingVideo)
ChatActionRecordingVoiceNote(ChatActionRecordingVoiceNote)
ChatActionUploadingVoiceNote(ChatActionUploadingVoiceNote)
ChatActionUploadingPhoto(ChatActionUploadingPhoto)
ChatActionUploadingDocument(ChatActionUploadingDocument)
ChatActionChoosingLocation(ChatActionChoosingLocation)
ChatActionChoosingContact(ChatActionChoosingContact)
ChatActionStartPlayingGame(ChatActionStartPlayingGame)
ChatActionRecordingVideoNote(ChatActionRecordingVideoNote)
ChatActionUploadingVideoNote(ChatActionUploadingVideoNote)
ChatActionCancel(ChatActionCancel)
Trait Implementations§
Source§impl Clone for ChatAction
impl Clone for ChatAction
Source§fn clone(&self) -> ChatAction
fn clone(&self) -> ChatAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ChatAction
impl Debug for ChatAction
Source§impl<'de> Deserialize<'de> for ChatAction
impl<'de> Deserialize<'de> for ChatAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChatAction
impl RefUnwindSafe for ChatAction
impl Send for ChatAction
impl Sync for ChatAction
impl Unpin for ChatAction
impl UnwindSafe for ChatAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more