pub struct SystemDiagnostics {
pub system: SystemInfo,
pub resources: ResourceUsage,
pub components: ComponentHealth,
pub active_jobs: u64,
}Expand description
System diagnostics
Fields§
§system: SystemInfoSystem information
resources: ResourceUsageResource usage
components: ComponentHealthComponent health
active_jobs: u64Number of active jobs
Trait Implementations§
Source§impl Clone for SystemDiagnostics
impl Clone for SystemDiagnostics
Source§fn clone(&self) -> SystemDiagnostics
fn clone(&self) -> SystemDiagnostics
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 SystemDiagnostics
impl Debug for SystemDiagnostics
Source§impl<'de> Deserialize<'de> for SystemDiagnostics
impl<'de> Deserialize<'de> for SystemDiagnostics
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 SystemDiagnostics
impl RefUnwindSafe for SystemDiagnostics
impl Send for SystemDiagnostics
impl Sync for SystemDiagnostics
impl Unpin for SystemDiagnostics
impl UnsafeUnpin for SystemDiagnostics
impl UnwindSafe for SystemDiagnostics
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