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