pub enum CodeScanningAlertFixedAlertState {
Fixed,
}
Expand description
State of a code scanning alert.
JSON schema
{
"description": "State of a code scanning alert.",
"type": "string",
"enum": [
"fixed"
]
}
Variants§
Fixed
Trait Implementations§
Source§impl Clone for CodeScanningAlertFixedAlertState
impl Clone for CodeScanningAlertFixedAlertState
Source§fn clone(&self) -> CodeScanningAlertFixedAlertState
fn clone(&self) -> CodeScanningAlertFixedAlertState
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 CodeScanningAlertFixedAlertState
impl<'de> Deserialize<'de> for CodeScanningAlertFixedAlertState
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<&CodeScanningAlertFixedAlertState> for CodeScanningAlertFixedAlertState
impl From<&CodeScanningAlertFixedAlertState> for CodeScanningAlertFixedAlertState
Source§fn from(value: &CodeScanningAlertFixedAlertState) -> Self
fn from(value: &CodeScanningAlertFixedAlertState) -> Self
Converts to this type from the input type.
Source§impl Ord for CodeScanningAlertFixedAlertState
impl Ord for CodeScanningAlertFixedAlertState
Source§fn cmp(&self, other: &CodeScanningAlertFixedAlertState) -> Ordering
fn cmp(&self, other: &CodeScanningAlertFixedAlertState) -> 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 CodeScanningAlertFixedAlertState
impl PartialEq for CodeScanningAlertFixedAlertState
Source§fn eq(&self, other: &CodeScanningAlertFixedAlertState) -> bool
fn eq(&self, other: &CodeScanningAlertFixedAlertState) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for CodeScanningAlertFixedAlertState
impl PartialOrd for CodeScanningAlertFixedAlertState
Source§impl TryFrom<&String> for CodeScanningAlertFixedAlertState
impl TryFrom<&String> for CodeScanningAlertFixedAlertState
Source§impl TryFrom<&str> for CodeScanningAlertFixedAlertState
impl TryFrom<&str> for CodeScanningAlertFixedAlertState
impl Copy for CodeScanningAlertFixedAlertState
impl Eq for CodeScanningAlertFixedAlertState
impl StructuralPartialEq for CodeScanningAlertFixedAlertState
Auto Trait Implementations§
impl Freeze for CodeScanningAlertFixedAlertState
impl RefUnwindSafe for CodeScanningAlertFixedAlertState
impl Send for CodeScanningAlertFixedAlertState
impl Sync for CodeScanningAlertFixedAlertState
impl Unpin for CodeScanningAlertFixedAlertState
impl UnwindSafe for CodeScanningAlertFixedAlertState
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