pub enum TypingActionType {
Typing,
Recording,
UploadingPhoto,
UploadingVideo,
UploadingFile,
ChoosingSticker,
}Expand description
输入状态动作类型
Variants§
Typing
正在输入文字
Recording
正在录音
UploadingPhoto
正在上传照片
UploadingVideo
正在上传视频
UploadingFile
正在上传文件
ChoosingSticker
正在选择贴纸
Implementations§
Trait Implementations§
Source§impl Clone for TypingActionType
impl Clone for TypingActionType
Source§fn clone(&self) -> TypingActionType
fn clone(&self) -> TypingActionType
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 TypingActionType
impl Debug for TypingActionType
Source§impl<'de> Deserialize<'de> for TypingActionType
impl<'de> Deserialize<'de> for TypingActionType
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 TypingActionType
impl RefUnwindSafe for TypingActionType
impl Send for TypingActionType
impl Sync for TypingActionType
impl Unpin for TypingActionType
impl UnsafeUnpin for TypingActionType
impl UnwindSafe for TypingActionType
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