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