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