pub enum PullRequestReviewCommentEvent {
Created(PullRequestReviewCommentCreated),
Deleted(PullRequestReviewCommentDeleted),
Edited(PullRequestReviewCommentEdited),
}
Expand description
PullRequestReviewCommentEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/pull_request_review_comment$created"
},
{
"$ref": "#/definitions/pull_request_review_comment$deleted"
},
{
"$ref": "#/definitions/pull_request_review_comment$edited"
}
]
}
Variants§
Created(PullRequestReviewCommentCreated)
Deleted(PullRequestReviewCommentDeleted)
Edited(PullRequestReviewCommentEdited)
Trait Implementations§
Source§impl Clone for PullRequestReviewCommentEvent
impl Clone for PullRequestReviewCommentEvent
Source§fn clone(&self) -> PullRequestReviewCommentEvent
fn clone(&self) -> PullRequestReviewCommentEvent
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 PullRequestReviewCommentEvent
impl<'de> Deserialize<'de> for PullRequestReviewCommentEvent
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<&PullRequestReviewCommentEvent> for PullRequestReviewCommentEvent
impl From<&PullRequestReviewCommentEvent> for PullRequestReviewCommentEvent
Source§fn from(value: &PullRequestReviewCommentEvent) -> Self
fn from(value: &PullRequestReviewCommentEvent) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewCommentCreated> for PullRequestReviewCommentEvent
impl From<PullRequestReviewCommentCreated> for PullRequestReviewCommentEvent
Source§fn from(value: PullRequestReviewCommentCreated) -> Self
fn from(value: PullRequestReviewCommentCreated) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewCommentDeleted> for PullRequestReviewCommentEvent
impl From<PullRequestReviewCommentDeleted> for PullRequestReviewCommentEvent
Source§fn from(value: PullRequestReviewCommentDeleted) -> Self
fn from(value: PullRequestReviewCommentDeleted) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewCommentEdited> for PullRequestReviewCommentEvent
impl From<PullRequestReviewCommentEdited> for PullRequestReviewCommentEvent
Source§fn from(value: PullRequestReviewCommentEdited) -> Self
fn from(value: PullRequestReviewCommentEdited) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PullRequestReviewCommentEvent
impl RefUnwindSafe for PullRequestReviewCommentEvent
impl Send for PullRequestReviewCommentEvent
impl Sync for PullRequestReviewCommentEvent
impl Unpin for PullRequestReviewCommentEvent
impl UnwindSafe for PullRequestReviewCommentEvent
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