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