pub struct PerformanceReport {
pub uptime_seconds: u64,
pub task_performance: HashMap<String, TaskPerformanceMetrics>,
pub active_alerts: Vec<Alert>,
pub sla_violations: Vec<SLAViolation>,
}
Expand description
Enhanced performance report
Fields§
§uptime_seconds: u64
§task_performance: HashMap<String, TaskPerformanceMetrics>
§active_alerts: Vec<Alert>
§sla_violations: Vec<SLAViolation>
Trait Implementations§
Source§impl Debug for PerformanceReport
impl Debug for PerformanceReport
Source§impl<'de> Deserialize<'de> for PerformanceReport
impl<'de> Deserialize<'de> for PerformanceReport
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 PerformanceReport
impl RefUnwindSafe for PerformanceReport
impl Send for PerformanceReport
impl Sync for PerformanceReport
impl Unpin for PerformanceReport
impl UnwindSafe for PerformanceReport
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