pub enum ConditionSeverity {
Error,
Warning,
Info,
None,
}
Variants§
Trait Implementations§
Source§impl Clone for ConditionSeverity
impl Clone for ConditionSeverity
Source§fn clone(&self) -> ConditionSeverity
fn clone(&self) -> ConditionSeverity
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 ConditionSeverity
impl Debug for ConditionSeverity
Source§impl<'de> Deserialize<'de> for ConditionSeverity
impl<'de> Deserialize<'de> for ConditionSeverity
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 ConditionSeverity
impl PartialEq for ConditionSeverity
Source§impl Serialize for ConditionSeverity
impl Serialize for ConditionSeverity
impl Copy for ConditionSeverity
impl StructuralPartialEq for ConditionSeverity
Auto Trait Implementations§
impl Freeze for ConditionSeverity
impl RefUnwindSafe for ConditionSeverity
impl Send for ConditionSeverity
impl Sync for ConditionSeverity
impl Unpin for ConditionSeverity
impl UnwindSafe for ConditionSeverity
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