pub struct SystemPerformanceMetrics {
pub overall_throughput_eps: f32,
pub memory_usage_mb: f32,
pub cpu_utilization_percent: f32,
pub queue_depth: usize,
pub active_operations: usize,
pub health_score: f32,
}Expand description
System-wide performance metrics
Fields§
§overall_throughput_eps: f32Overall throughput
memory_usage_mb: f32Memory usage
cpu_utilization_percent: f32CPU utilization
queue_depth: usizeQueue depth
active_operations: usizeActive operations count
health_score: f32System health score
Trait Implementations§
Source§impl Clone for SystemPerformanceMetrics
impl Clone for SystemPerformanceMetrics
Source§fn clone(&self) -> SystemPerformanceMetrics
fn clone(&self) -> SystemPerformanceMetrics
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 SystemPerformanceMetrics
impl Debug for SystemPerformanceMetrics
Source§impl<'de> Deserialize<'de> for SystemPerformanceMetrics
impl<'de> Deserialize<'de> for SystemPerformanceMetrics
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 SystemPerformanceMetrics
impl RefUnwindSafe for SystemPerformanceMetrics
impl Send for SystemPerformanceMetrics
impl Sync for SystemPerformanceMetrics
impl Unpin for SystemPerformanceMetrics
impl UnwindSafe for SystemPerformanceMetrics
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