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