pub struct ChatNotice {
pub command: String,
pub userId: String,
pub preview: String,
pub senderAvatar: String,
pub senderUserName: String,
}Fields§
§command: String§userId: String§preview: String§senderAvatar: String§senderUserName: StringImplementations§
Source§impl ChatNotice
impl ChatNotice
pub fn from_value(data: &Value) -> Result<Self, Error>
Trait Implementations§
Source§impl Clone for ChatNotice
impl Clone for ChatNotice
Source§fn clone(&self) -> ChatNotice
fn clone(&self) -> ChatNotice
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 ChatNotice
impl Debug for ChatNotice
Source§impl<'de> Deserialize<'de> for ChatNotice
impl<'de> Deserialize<'de> for ChatNotice
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 ChatNotice
impl RefUnwindSafe for ChatNotice
impl Send for ChatNotice
impl Sync for ChatNotice
impl Unpin for ChatNotice
impl UnsafeUnpin for ChatNotice
impl UnwindSafe for ChatNotice
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