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