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