pub struct IssueComment {Show 14 fields
pub id: i64,
pub node_id: String,
pub url: String,
pub body: Option<String>,
pub body_text: Option<String>,
pub body_html: Option<String>,
pub html_url: String,
pub user: Option<SimpleUser>,
pub created_at: String,
pub updated_at: String,
pub issue_url: String,
pub author_association: AuthorAssociation,
pub performed_via_github_app: Option<Integration>,
pub reactions: Option<ReactionRollup>,
}Fields§
§id: i64§node_id: String§url: String§body: Option<String>§body_text: Option<String>§body_html: Option<String>§html_url: String§user: Option<SimpleUser>§created_at: String§updated_at: String§issue_url: String§performed_via_github_app: Option<Integration>§reactions: Option<ReactionRollup>Trait Implementations§
Source§impl Clone for IssueComment
impl Clone for IssueComment
Source§fn clone(&self) -> IssueComment
fn clone(&self) -> IssueComment
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 IssueComment
impl Debug for IssueComment
Source§impl<'de> Deserialize<'de> for IssueComment
impl<'de> Deserialize<'de> for IssueComment
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 Freeze for IssueComment
impl RefUnwindSafe for IssueComment
impl Send for IssueComment
impl Sync for IssueComment
impl Unpin for IssueComment
impl UnwindSafe for IssueComment
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