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