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