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