pub struct TimelineLineCommentedEvent {
pub event: Option<String>,
pub node_id: Option<String>,
pub comments: Option<Vec<PullRequestReviewComment>>,
}
Expand description
TimelineLineCommentedEvent : Timeline Line Commented Event
Fields§
§event: Option<String>
§node_id: Option<String>
§comments: Option<Vec<PullRequestReviewComment>>
Implementations§
Source§impl TimelineLineCommentedEvent
impl TimelineLineCommentedEvent
Sourcepub fn new() -> TimelineLineCommentedEvent
pub fn new() -> TimelineLineCommentedEvent
Timeline Line Commented Event
Trait Implementations§
Source§impl Clone for TimelineLineCommentedEvent
impl Clone for TimelineLineCommentedEvent
Source§fn clone(&self) -> TimelineLineCommentedEvent
fn clone(&self) -> TimelineLineCommentedEvent
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 TimelineLineCommentedEvent
impl Debug for TimelineLineCommentedEvent
Source§impl Default for TimelineLineCommentedEvent
impl Default for TimelineLineCommentedEvent
Source§fn default() -> TimelineLineCommentedEvent
fn default() -> TimelineLineCommentedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimelineLineCommentedEvent
impl<'de> Deserialize<'de> for TimelineLineCommentedEvent
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
impl StructuralPartialEq for TimelineLineCommentedEvent
Auto Trait Implementations§
impl Freeze for TimelineLineCommentedEvent
impl RefUnwindSafe for TimelineLineCommentedEvent
impl Send for TimelineLineCommentedEvent
impl Sync for TimelineLineCommentedEvent
impl Unpin for TimelineLineCommentedEvent
impl UnwindSafe for TimelineLineCommentedEvent
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