pub enum RuleStability {
Stable,
Experimental,
Deprecated,
Reserved,
}Expand description
Rule stability levels
Variants§
Stable
Rule is stable and recommended for production use
Experimental
Rule is experimental and may change
Deprecated
Rule is deprecated and may be removed in future versions
Reserved
Rule number reserved but never implemented
Trait Implementations§
Source§impl Clone for RuleStability
impl Clone for RuleStability
Source§fn clone(&self) -> RuleStability
fn clone(&self) -> RuleStability
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 RuleStability
impl Debug for RuleStability
Source§impl PartialEq for RuleStability
impl PartialEq for RuleStability
impl StructuralPartialEq for RuleStability
Auto Trait Implementations§
impl Freeze for RuleStability
impl RefUnwindSafe for RuleStability
impl Send for RuleStability
impl Sync for RuleStability
impl Unpin for RuleStability
impl UnwindSafe for RuleStability
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