pub enum DependabotAlertFixedAlertSecurityAdvisorySeverity {
Low,
Medium,
High,
Critical,
}Expand description
The severity of the advisory.
JSON schema
{
"description": "The severity of the advisory.",
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
}Variants§
Trait Implementations§
Source§impl Clone for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Clone for DependabotAlertFixedAlertSecurityAdvisorySeverity
Source§fn clone(&self) -> DependabotAlertFixedAlertSecurityAdvisorySeverity
fn clone(&self) -> DependabotAlertFixedAlertSecurityAdvisorySeverity
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<'de> Deserialize<'de> for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl<'de> Deserialize<'de> for DependabotAlertFixedAlertSecurityAdvisorySeverity
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 From<&DependabotAlertFixedAlertSecurityAdvisorySeverity> for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl From<&DependabotAlertFixedAlertSecurityAdvisorySeverity> for DependabotAlertFixedAlertSecurityAdvisorySeverity
Source§fn from(value: &DependabotAlertFixedAlertSecurityAdvisorySeverity) -> Self
fn from(value: &DependabotAlertFixedAlertSecurityAdvisorySeverity) -> Self
Converts to this type from the input type.
Source§impl Ord for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Ord for DependabotAlertFixedAlertSecurityAdvisorySeverity
Source§fn cmp(
&self,
other: &DependabotAlertFixedAlertSecurityAdvisorySeverity,
) -> Ordering
fn cmp( &self, other: &DependabotAlertFixedAlertSecurityAdvisorySeverity, ) -> 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 DependabotAlertFixedAlertSecurityAdvisorySeverity
impl PartialEq for DependabotAlertFixedAlertSecurityAdvisorySeverity
Source§fn eq(&self, other: &DependabotAlertFixedAlertSecurityAdvisorySeverity) -> bool
fn eq(&self, other: &DependabotAlertFixedAlertSecurityAdvisorySeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl PartialOrd for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Copy for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Eq for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl StructuralPartialEq for DependabotAlertFixedAlertSecurityAdvisorySeverity
Auto Trait Implementations§
impl Freeze for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl RefUnwindSafe for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Send for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Sync for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl Unpin for DependabotAlertFixedAlertSecurityAdvisorySeverity
impl UnwindSafe for DependabotAlertFixedAlertSecurityAdvisorySeverity
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