pub struct CommitCommentEvent(pub CommitCommentCreated);
Expand description
CommitCommentEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/commit_comment$created"
}
]
}
Tuple Fields§
§0: CommitCommentCreated
Trait Implementations§
Source§impl Clone for CommitCommentEvent
impl Clone for CommitCommentEvent
Source§fn clone(&self) -> CommitCommentEvent
fn clone(&self) -> CommitCommentEvent
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 CommitCommentEvent
impl Debug for CommitCommentEvent
Source§impl Deref for CommitCommentEvent
impl Deref for CommitCommentEvent
Source§type Target = CommitCommentCreated
type Target = CommitCommentCreated
The resulting type after dereferencing.
Source§fn deref(&self) -> &CommitCommentCreated
fn deref(&self) -> &CommitCommentCreated
Dereferences the value.
Source§impl<'de> Deserialize<'de> for CommitCommentEvent
impl<'de> Deserialize<'de> for CommitCommentEvent
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<&CommitCommentEvent> for CommitCommentEvent
impl From<&CommitCommentEvent> for CommitCommentEvent
Source§fn from(value: &CommitCommentEvent) -> Self
fn from(value: &CommitCommentEvent) -> Self
Converts to this type from the input type.
Source§impl From<CommitCommentCreated> for CommitCommentEvent
impl From<CommitCommentCreated> for CommitCommentEvent
Source§fn from(value: CommitCommentCreated) -> Self
fn from(value: CommitCommentCreated) -> Self
Converts to this type from the input type.
Source§impl From<CommitCommentEvent> for CommitCommentCreated
impl From<CommitCommentEvent> for CommitCommentCreated
Source§fn from(value: CommitCommentEvent) -> Self
fn from(value: CommitCommentEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CommitCommentEvent
impl RefUnwindSafe for CommitCommentEvent
impl Send for CommitCommentEvent
impl Sync for CommitCommentEvent
impl Unpin for CommitCommentEvent
impl UnwindSafe for CommitCommentEvent
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