pub enum DeprecationSeverity {
Low,
Medium,
High,
Critical,
}
Expand description
Severity levels for deprecation warnings
Variants§
Low
Tool is deprecated but still fully functional
Medium
Tool may have reduced functionality or support
High
Tool will be removed soon or has significant issues
Critical
Tool is disabled or non-functional
Trait Implementations§
Source§impl Clone for DeprecationSeverity
impl Clone for DeprecationSeverity
Source§fn clone(&self) -> DeprecationSeverity
fn clone(&self) -> DeprecationSeverity
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 DeprecationSeverity
impl Debug for DeprecationSeverity
Source§impl Default for DeprecationSeverity
impl Default for DeprecationSeverity
Source§fn default() -> DeprecationSeverity
fn default() -> DeprecationSeverity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeprecationSeverity
impl<'de> Deserialize<'de> for DeprecationSeverity
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 DeprecationSeverity
impl PartialEq for DeprecationSeverity
Source§impl Serialize for DeprecationSeverity
impl Serialize for DeprecationSeverity
impl StructuralPartialEq for DeprecationSeverity
Auto Trait Implementations§
impl Freeze for DeprecationSeverity
impl RefUnwindSafe for DeprecationSeverity
impl Send for DeprecationSeverity
impl Sync for DeprecationSeverity
impl Unpin for DeprecationSeverity
impl UnwindSafe for DeprecationSeverity
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