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