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