pub enum AlertState {
Active,
Acknowledged,
Resolved,
Suppressed,
}
Expand description
Alert states
Variants§
Trait Implementations§
Source§impl Clone for AlertState
impl Clone for AlertState
Source§fn clone(&self) -> AlertState
fn clone(&self) -> AlertState
Returns a duplicate of the value. Read more
1.0.0 · 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 AlertState
impl Debug for AlertState
Source§impl<'de> Deserialize<'de> for AlertState
impl<'de> Deserialize<'de> for AlertState
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 Hash for AlertState
impl Hash for AlertState
Source§impl PartialEq for AlertState
impl PartialEq for AlertState
Source§impl Serialize for AlertState
impl Serialize for AlertState
impl Eq for AlertState
impl StructuralPartialEq for AlertState
Auto Trait Implementations§
impl Freeze for AlertState
impl RefUnwindSafe for AlertState
impl Send for AlertState
impl Sync for AlertState
impl Unpin for AlertState
impl UnwindSafe for AlertState
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