pub enum Typing {
No,
Yes(TypingInfo),
}Available on crate features
client or server only.Expand description
A mark for whether the user is typing or not.
Variants§
Trait Implementations§
impl Copy for Typing
Source§impl<'de> Deserialize<'de> for Typing
impl<'de> Deserialize<'de> for Typing
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
Source§impl From<TypingInfo> for Typing
impl From<TypingInfo> for Typing
Source§fn from(value: TypingInfo) -> Self
fn from(value: TypingInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Typing
impl RefUnwindSafe for Typing
impl Send for Typing
impl Sync for Typing
impl Unpin for Typing
impl UnsafeUnpin for Typing
impl UnwindSafe for Typing
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