pub struct SystemMessageData {
pub id: String,
pub message: String,
pub data: Option<Value>,
pub created_at: String,
}Expand description
系统消息数据
Fields§
§id: String§message: String§data: Option<Value>§created_at: StringTrait Implementations§
Source§impl Clone for SystemMessageData
impl Clone for SystemMessageData
Source§fn clone(&self) -> SystemMessageData
fn clone(&self) -> SystemMessageData
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 SystemMessageData
impl Debug for SystemMessageData
Source§impl<'de> Deserialize<'de> for SystemMessageData
impl<'de> Deserialize<'de> for SystemMessageData
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 SystemMessageData
impl RefUnwindSafe for SystemMessageData
impl Send for SystemMessageData
impl Sync for SystemMessageData
impl Unpin for SystemMessageData
impl UnsafeUnpin for SystemMessageData
impl UnwindSafe for SystemMessageData
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