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