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