pub enum HealthAlert {
ZombieCount {
count: usize,
threshold: usize,
},
CpuHigh {
percent: f32,
minutes: usize,
},
MemoryLeak {
ram_percent: f32,
},
}Expand description
Health alert types.
Variants§
ZombieCount
Zombie process count exceeded threshold.
CpuHigh
CPU usage exceeded threshold for consecutive minutes.
MemoryLeak
Memory usage monotonically increasing (potential leak).
Trait Implementations§
Source§impl Clone for HealthAlert
impl Clone for HealthAlert
Source§fn clone(&self) -> HealthAlert
fn clone(&self) -> HealthAlert
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HealthAlert
impl Debug for HealthAlert
Source§impl<'de> Deserialize<'de> for HealthAlert
impl<'de> Deserialize<'de> for HealthAlert
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
Source§impl Display for HealthAlert
impl Display for HealthAlert
Auto Trait Implementations§
impl Freeze for HealthAlert
impl RefUnwindSafe for HealthAlert
impl Send for HealthAlert
impl Sync for HealthAlert
impl Unpin for HealthAlert
impl UnsafeUnpin for HealthAlert
impl UnwindSafe for HealthAlert
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