pub enum RulePriority {
Lowest = 0,
Low = 25,
Normal = 50,
High = 75,
Highest = 100,
Critical = 200,
}Expand description
规则优先级
Variants§
Trait Implementations§
Source§impl Clone for RulePriority
impl Clone for RulePriority
Source§fn clone(&self) -> RulePriority
fn clone(&self) -> RulePriority
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 RulePriority
impl Debug for RulePriority
Source§impl Default for RulePriority
impl Default for RulePriority
Source§fn default() -> RulePriority
fn default() -> RulePriority
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RulePriority
impl<'de> Deserialize<'de> for RulePriority
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 Ord for RulePriority
impl Ord for RulePriority
Source§fn cmp(&self, other: &RulePriority) -> Ordering
fn cmp(&self, other: &RulePriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RulePriority
impl PartialEq for RulePriority
Source§impl PartialOrd for RulePriority
impl PartialOrd for RulePriority
Source§impl Serialize for RulePriority
impl Serialize for RulePriority
impl Copy for RulePriority
impl Eq for RulePriority
impl StructuralPartialEq for RulePriority
Auto Trait Implementations§
impl Freeze for RulePriority
impl RefUnwindSafe for RulePriority
impl Send for RulePriority
impl Sync for RulePriority
impl Unpin for RulePriority
impl UnsafeUnpin for RulePriority
impl UnwindSafe for RulePriority
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.