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