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