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