pub enum ActionPriority {
Critical,
High,
Standard,
Low,
}Expand description
Priority level of a proposed action.
Variants§
Trait Implementations§
Source§impl Clone for ActionPriority
impl Clone for ActionPriority
Source§fn clone(&self) -> ActionPriority
fn clone(&self) -> ActionPriority
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 ActionPriority
impl Debug for ActionPriority
Source§impl<'de> Deserialize<'de> for ActionPriority
impl<'de> Deserialize<'de> for ActionPriority
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 ActionPriority
impl Hash for ActionPriority
Source§impl PartialEq for ActionPriority
impl PartialEq for ActionPriority
Source§impl Serialize for ActionPriority
impl Serialize for ActionPriority
impl Copy for ActionPriority
impl Eq for ActionPriority
impl StructuralPartialEq for ActionPriority
Auto Trait Implementations§
impl Freeze for ActionPriority
impl RefUnwindSafe for ActionPriority
impl Send for ActionPriority
impl Sync for ActionPriority
impl Unpin for ActionPriority
impl UnsafeUnpin for ActionPriority
impl UnwindSafe for ActionPriority
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