pub struct SystemStatusMessage {
pub channel: String,
pub data: Vec<SystemStatusData>,
}Expand description
System status message.
Fields§
§channel: StringChannel name (always “status”).
data: Vec<SystemStatusData>Status data.
Trait Implementations§
Source§impl Clone for SystemStatusMessage
impl Clone for SystemStatusMessage
Source§fn clone(&self) -> SystemStatusMessage
fn clone(&self) -> SystemStatusMessage
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 SystemStatusMessage
impl Debug for SystemStatusMessage
Source§impl<'de> Deserialize<'de> for SystemStatusMessage
impl<'de> Deserialize<'de> for SystemStatusMessage
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 SystemStatusMessage
impl RefUnwindSafe for SystemStatusMessage
impl Send for SystemStatusMessage
impl Sync for SystemStatusMessage
impl Unpin for SystemStatusMessage
impl UnwindSafe for SystemStatusMessage
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