pub enum PullRequestClosedAction {
Closed,
}
Expand description
PullRequestClosedAction
JSON schema
{
"type": "string",
"enum": [
"closed"
]
}
Variants§
Closed
Trait Implementations§
Source§impl Clone for PullRequestClosedAction
impl Clone for PullRequestClosedAction
Source§fn clone(&self) -> PullRequestClosedAction
fn clone(&self) -> PullRequestClosedAction
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 Debug for PullRequestClosedAction
impl Debug for PullRequestClosedAction
Source§impl<'de> Deserialize<'de> for PullRequestClosedAction
impl<'de> Deserialize<'de> for PullRequestClosedAction
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<&PullRequestClosedAction> for PullRequestClosedAction
impl From<&PullRequestClosedAction> for PullRequestClosedAction
Source§fn from(value: &PullRequestClosedAction) -> Self
fn from(value: &PullRequestClosedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for PullRequestClosedAction
impl FromStr for PullRequestClosedAction
Source§impl Hash for PullRequestClosedAction
impl Hash for PullRequestClosedAction
Source§impl Ord for PullRequestClosedAction
impl Ord for PullRequestClosedAction
Source§fn cmp(&self, other: &PullRequestClosedAction) -> Ordering
fn cmp(&self, other: &PullRequestClosedAction) -> 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 PullRequestClosedAction
impl PartialEq for PullRequestClosedAction
Source§impl PartialOrd for PullRequestClosedAction
impl PartialOrd for PullRequestClosedAction
Source§impl Serialize for PullRequestClosedAction
impl Serialize for PullRequestClosedAction
Source§impl ToString for PullRequestClosedAction
impl ToString for PullRequestClosedAction
Source§impl TryFrom<&String> for PullRequestClosedAction
impl TryFrom<&String> for PullRequestClosedAction
Source§impl TryFrom<&str> for PullRequestClosedAction
impl TryFrom<&str> for PullRequestClosedAction
Source§impl TryFrom<String> for PullRequestClosedAction
impl TryFrom<String> for PullRequestClosedAction
impl Copy for PullRequestClosedAction
impl Eq for PullRequestClosedAction
impl StructuralPartialEq for PullRequestClosedAction
Auto Trait Implementations§
impl Freeze for PullRequestClosedAction
impl RefUnwindSafe for PullRequestClosedAction
impl Send for PullRequestClosedAction
impl Sync for PullRequestClosedAction
impl Unpin for PullRequestClosedAction
impl UnwindSafe for PullRequestClosedAction
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