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