pub enum DependabotAlertSecurityVulnerabilitySeverity {
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 DependabotAlertSecurityVulnerabilitySeverity
impl Clone for DependabotAlertSecurityVulnerabilitySeverity
Source§fn clone(&self) -> DependabotAlertSecurityVulnerabilitySeverity
fn clone(&self) -> DependabotAlertSecurityVulnerabilitySeverity
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 DependabotAlertSecurityVulnerabilitySeverity
impl<'de> Deserialize<'de> for DependabotAlertSecurityVulnerabilitySeverity
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<&DependabotAlertSecurityVulnerabilitySeverity> for DependabotAlertSecurityVulnerabilitySeverity
impl From<&DependabotAlertSecurityVulnerabilitySeverity> for DependabotAlertSecurityVulnerabilitySeverity
Source§fn from(value: &DependabotAlertSecurityVulnerabilitySeverity) -> Self
fn from(value: &DependabotAlertSecurityVulnerabilitySeverity) -> Self
Converts to this type from the input type.
Source§impl Ord for DependabotAlertSecurityVulnerabilitySeverity
impl Ord for DependabotAlertSecurityVulnerabilitySeverity
Source§fn cmp(&self, other: &DependabotAlertSecurityVulnerabilitySeverity) -> Ordering
fn cmp(&self, other: &DependabotAlertSecurityVulnerabilitySeverity) -> 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 DependabotAlertSecurityVulnerabilitySeverity
impl PartialEq for DependabotAlertSecurityVulnerabilitySeverity
Source§fn eq(&self, other: &DependabotAlertSecurityVulnerabilitySeverity) -> bool
fn eq(&self, other: &DependabotAlertSecurityVulnerabilitySeverity) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DependabotAlertSecurityVulnerabilitySeverity
impl PartialOrd for DependabotAlertSecurityVulnerabilitySeverity
impl Copy for DependabotAlertSecurityVulnerabilitySeverity
impl Eq for DependabotAlertSecurityVulnerabilitySeverity
impl StructuralPartialEq for DependabotAlertSecurityVulnerabilitySeverity
Auto Trait Implementations§
impl Freeze for DependabotAlertSecurityVulnerabilitySeverity
impl RefUnwindSafe for DependabotAlertSecurityVulnerabilitySeverity
impl Send for DependabotAlertSecurityVulnerabilitySeverity
impl Sync for DependabotAlertSecurityVulnerabilitySeverity
impl Unpin for DependabotAlertSecurityVulnerabilitySeverity
impl UnwindSafe for DependabotAlertSecurityVulnerabilitySeverity
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