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