pub enum NotifyLevel {
Silent,
Normal,
Alert,
}Expand description
Notification level for workflow events.
Variants§
Trait Implementations§
Source§impl Clone for NotifyLevel
impl Clone for NotifyLevel
Source§fn clone(&self) -> NotifyLevel
fn clone(&self) -> NotifyLevel
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 NotifyLevel
impl Debug for NotifyLevel
Source§impl Default for NotifyLevel
impl Default for NotifyLevel
Source§fn default() -> NotifyLevel
fn default() -> NotifyLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotifyLevel
impl<'de> Deserialize<'de> for NotifyLevel
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 PartialEq for NotifyLevel
impl PartialEq for NotifyLevel
Source§fn eq(&self, other: &NotifyLevel) -> bool
fn eq(&self, other: &NotifyLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotifyLevel
impl Serialize for NotifyLevel
impl StructuralPartialEq for NotifyLevel
Auto Trait Implementations§
impl Freeze for NotifyLevel
impl RefUnwindSafe for NotifyLevel
impl Send for NotifyLevel
impl Sync for NotifyLevel
impl Unpin for NotifyLevel
impl UnsafeUnpin for NotifyLevel
impl UnwindSafe for NotifyLevel
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