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