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