pub struct PerformanceMetrics {
pub memory_pool_usage: f64,
pub cache_hit_rate: f64,
pub batch_count: usize,
pub worker_utilization: f64,
}Expand description
Performance metrics for monitoring
Fields§
§memory_pool_usage: f64§cache_hit_rate: f64§batch_count: usize§worker_utilization: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for PerformanceMetrics
impl RefUnwindSafe for PerformanceMetrics
impl Send for PerformanceMetrics
impl Sync for PerformanceMetrics
impl Unpin for PerformanceMetrics
impl UnwindSafe for PerformanceMetrics
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