pub enum SupportLevel {
Partial,
Incompatible(Severity),
Ignored,
Unrecognized,
}Expand description
The support level for a given configuration key.
Full support is omitted from the enum and those keys are not classified since there is nothing to be done about them downstream.
Variants§
Partial
Partially supported.
Incompatible(Severity)
Explicitly incompatible.
Ignored
Intentionally ignored.
Unrecognized
Unrecognized.
Trait Implementations§
Source§impl Clone for SupportLevel
impl Clone for SupportLevel
Source§fn clone(&self) -> SupportLevel
fn clone(&self) -> SupportLevel
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 moreimpl Copy for SupportLevel
Source§impl Debug for SupportLevel
impl Debug for SupportLevel
impl Eq for SupportLevel
Source§impl PartialEq for SupportLevel
impl PartialEq for SupportLevel
Source§fn eq(&self, other: &SupportLevel) -> bool
fn eq(&self, other: &SupportLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SupportLevel
Auto Trait Implementations§
impl Freeze for SupportLevel
impl RefUnwindSafe for SupportLevel
impl Send for SupportLevel
impl Sync for SupportLevel
impl Unpin for SupportLevel
impl UnsafeUnpin for SupportLevel
impl UnwindSafe for SupportLevel
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