pub struct AlertInfo {
pub id: String,
pub severity: String,
pub message: String,
pub timestamp: DateTime<Utc>,
pub component: String,
pub acknowledged: bool,
}Fields§
§id: String§severity: String§message: String§timestamp: DateTime<Utc>§component: String§acknowledged: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for AlertInfo
impl<'de> Deserialize<'de> for AlertInfo
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 AlertInfo
impl RefUnwindSafe for AlertInfo
impl Send for AlertInfo
impl Sync for AlertInfo
impl Unpin for AlertInfo
impl UnwindSafe for AlertInfo
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