pub struct HealthAlert {
pub severity: AlertSeverity,
pub message: String,
pub component: String,
pub timestamp: SystemTime,
pub id: String,
}Expand description
Health alert information
Fields§
§severity: AlertSeverityAlert severity
message: StringAlert message
component: StringComponent that triggered the alert
timestamp: SystemTimeAlert timestamp
id: StringAlert ID for tracking
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
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