pub struct DiscussionCommentDeletedEventComment<'a> {Show 13 fields
pub id: usize,
pub node_id: &'a str,
pub html_url: &'a str,
pub parent_id: Option<usize>,
pub child_comment_count: usize,
pub repository_url: &'a str,
pub discussion_id: usize,
pub author_association: AuthorAssociation,
pub user: User<'a>,
pub created_at: &'a str,
pub updated_at: &'a str,
pub body: &'a str,
pub reactions: Reactions<'a>,
}
Fields§
§id: usize
§node_id: &'a str
§html_url: &'a str
§parent_id: Option<usize>
§child_comment_count: usize
§repository_url: &'a str
§discussion_id: usize
§user: User<'a>
§created_at: &'a str
§updated_at: &'a str
§body: &'a str
The main text of the comment.
reactions: Reactions<'a>
Trait Implementations§
source§impl<'a> Debug for DiscussionCommentDeletedEventComment<'a>
impl<'a> Debug for DiscussionCommentDeletedEventComment<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for DiscussionCommentDeletedEventComment<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DiscussionCommentDeletedEventComment<'a>
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
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DiscussionCommentDeletedEventComment<'a>
impl<'a> Send for DiscussionCommentDeletedEventComment<'a>
impl<'a> Sync for DiscussionCommentDeletedEventComment<'a>
impl<'a> Unpin for DiscussionCommentDeletedEventComment<'a>
impl<'a> UnwindSafe for DiscussionCommentDeletedEventComment<'a>
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