pub enum PullRequestDemilestonedAction {
Demilestoned,
}
Expand description
PullRequestDemilestonedAction
JSON schema
{
"type": "string",
"enum": [
"demilestoned"
]
}
Variants§
Demilestoned
Trait Implementations§
Source§impl Clone for PullRequestDemilestonedAction
impl Clone for PullRequestDemilestonedAction
Source§fn clone(&self) -> PullRequestDemilestonedAction
fn clone(&self) -> PullRequestDemilestonedAction
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<'de> Deserialize<'de> for PullRequestDemilestonedAction
impl<'de> Deserialize<'de> for PullRequestDemilestonedAction
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<&PullRequestDemilestonedAction> for PullRequestDemilestonedAction
impl From<&PullRequestDemilestonedAction> for PullRequestDemilestonedAction
Source§fn from(value: &PullRequestDemilestonedAction) -> Self
fn from(value: &PullRequestDemilestonedAction) -> Self
Converts to this type from the input type.
Source§impl Hash for PullRequestDemilestonedAction
impl Hash for PullRequestDemilestonedAction
Source§impl Ord for PullRequestDemilestonedAction
impl Ord for PullRequestDemilestonedAction
Source§fn cmp(&self, other: &PullRequestDemilestonedAction) -> Ordering
fn cmp(&self, other: &PullRequestDemilestonedAction) -> 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 PullRequestDemilestonedAction
impl PartialEq for PullRequestDemilestonedAction
Source§fn eq(&self, other: &PullRequestDemilestonedAction) -> bool
fn eq(&self, other: &PullRequestDemilestonedAction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for PullRequestDemilestonedAction
impl PartialOrd for PullRequestDemilestonedAction
Source§impl TryFrom<&String> for PullRequestDemilestonedAction
impl TryFrom<&String> for PullRequestDemilestonedAction
Source§impl TryFrom<&str> for PullRequestDemilestonedAction
impl TryFrom<&str> for PullRequestDemilestonedAction
impl Copy for PullRequestDemilestonedAction
impl Eq for PullRequestDemilestonedAction
impl StructuralPartialEq for PullRequestDemilestonedAction
Auto Trait Implementations§
impl Freeze for PullRequestDemilestonedAction
impl RefUnwindSafe for PullRequestDemilestonedAction
impl Send for PullRequestDemilestonedAction
impl Sync for PullRequestDemilestonedAction
impl Unpin for PullRequestDemilestonedAction
impl UnwindSafe for PullRequestDemilestonedAction
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