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