pub struct SystemStatus {
pub overall_health: String,
pub statistics: SystemStatistics,
pub memory_health: String,
pub thread_health: String,
pub node_health: String,
pub communication_health: String,
}Expand description
Comprehensive system status with component health information
Fields§
§overall_health: StringOverall system health status
statistics: SystemStatisticsSystem performance statistics
memory_health: StringMemory system health
thread_health: StringThread system health
node_health: StringNode system health
communication_health: StringCommunication system health
Trait Implementations§
Source§impl Clone for SystemStatus
impl Clone for SystemStatus
Source§fn clone(&self) -> SystemStatus
fn clone(&self) -> SystemStatus
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 moreAuto Trait Implementations§
impl Freeze for SystemStatus
impl RefUnwindSafe for SystemStatus
impl Send for SystemStatus
impl Sync for SystemStatus
impl Unpin for SystemStatus
impl UnwindSafe for SystemStatus
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