Struct github_rest::model::issues::comments::IssueComment
source · pub struct IssueComment {
pub id: i64,
pub node_id: String,
pub html_url: String,
pub issue_url: String,
pub author_association: Association,
pub user: Option<SimpleUser>,
pub url: String,
pub created_at: String,
pub updated_at: String,
pub reactions: Option<ReactionRollup>,
}
Expand description
Fields§
§id: i64
§node_id: String
§html_url: String
§issue_url: String
§user: Option<SimpleUser>
§url: String
§created_at: String
§updated_at: String
§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 copy 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
source§impl PartialEq<IssueComment> for IssueComment
impl PartialEq<IssueComment> for IssueComment
source§fn eq(&self, other: &IssueComment) -> bool
fn eq(&self, other: &IssueComment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IssueComment
impl Serialize for IssueComment
impl StructuralPartialEq for IssueComment
Auto Trait Implementations§
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