pub enum PullRequestState {
Open,
Closed,
}
Expand description
State of this Pull Request. Either open
or closed
.
JSON schema
{
"description": "State of this Pull Request. Either `open` or `closed`.",
"type": "string",
"enum": [
"open",
"closed"
]
}
Variants§
Trait Implementations§
Source§impl Clone for PullRequestState
impl Clone for PullRequestState
Source§fn clone(&self) -> PullRequestState
fn clone(&self) -> PullRequestState
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 Debug for PullRequestState
impl Debug for PullRequestState
Source§impl<'de> Deserialize<'de> for PullRequestState
impl<'de> Deserialize<'de> for PullRequestState
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<&PullRequestState> for PullRequestState
impl From<&PullRequestState> for PullRequestState
Source§fn from(value: &PullRequestState) -> Self
fn from(value: &PullRequestState) -> Self
Converts to this type from the input type.
Source§impl FromStr for PullRequestState
impl FromStr for PullRequestState
Source§impl Hash for PullRequestState
impl Hash for PullRequestState
Source§impl Ord for PullRequestState
impl Ord for PullRequestState
Source§fn cmp(&self, other: &PullRequestState) -> Ordering
fn cmp(&self, other: &PullRequestState) -> 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 PullRequestState
impl PartialEq for PullRequestState
Source§impl PartialOrd for PullRequestState
impl PartialOrd for PullRequestState
Source§impl Serialize for PullRequestState
impl Serialize for PullRequestState
Source§impl ToString for PullRequestState
impl ToString for PullRequestState
Source§impl TryFrom<&String> for PullRequestState
impl TryFrom<&String> for PullRequestState
Source§impl TryFrom<&str> for PullRequestState
impl TryFrom<&str> for PullRequestState
Source§impl TryFrom<String> for PullRequestState
impl TryFrom<String> for PullRequestState
impl Copy for PullRequestState
impl Eq for PullRequestState
impl StructuralPartialEq for PullRequestState
Auto Trait Implementations§
impl Freeze for PullRequestState
impl RefUnwindSafe for PullRequestState
impl Send for PullRequestState
impl Sync for PullRequestState
impl Unpin for PullRequestState
impl UnwindSafe for PullRequestState
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