pub struct TimelineCommitCommentedEvent {
pub event: Option<String>,
pub node_id: Option<String>,
pub commit_id: Option<String>,
pub comments: Option<Vec<CommitComment>>,
}
Expand description
TimelineCommitCommentedEvent : Timeline Commit Commented Event
Fields§
§event: Option<String>
§node_id: Option<String>
§commit_id: Option<String>
§comments: Option<Vec<CommitComment>>
Implementations§
Source§impl TimelineCommitCommentedEvent
impl TimelineCommitCommentedEvent
Sourcepub fn new() -> TimelineCommitCommentedEvent
pub fn new() -> TimelineCommitCommentedEvent
Timeline Commit Commented Event
Trait Implementations§
Source§impl Clone for TimelineCommitCommentedEvent
impl Clone for TimelineCommitCommentedEvent
Source§fn clone(&self) -> TimelineCommitCommentedEvent
fn clone(&self) -> TimelineCommitCommentedEvent
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 TimelineCommitCommentedEvent
impl Debug for TimelineCommitCommentedEvent
Source§impl Default for TimelineCommitCommentedEvent
impl Default for TimelineCommitCommentedEvent
Source§fn default() -> TimelineCommitCommentedEvent
fn default() -> TimelineCommitCommentedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimelineCommitCommentedEvent
impl<'de> Deserialize<'de> for TimelineCommitCommentedEvent
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 PartialEq for TimelineCommitCommentedEvent
impl PartialEq for TimelineCommitCommentedEvent
Source§fn eq(&self, other: &TimelineCommitCommentedEvent) -> bool
fn eq(&self, other: &TimelineCommitCommentedEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TimelineCommitCommentedEvent
Auto Trait Implementations§
impl Freeze for TimelineCommitCommentedEvent
impl RefUnwindSafe for TimelineCommitCommentedEvent
impl Send for TimelineCommitCommentedEvent
impl Sync for TimelineCommitCommentedEvent
impl Unpin for TimelineCommitCommentedEvent
impl UnwindSafe for TimelineCommitCommentedEvent
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