pub struct IssueNode {
pub number: u64,
pub title: String,
pub created_at: String,
pub labels: Labels,
pub url: String,
}Expand description
A GitHub issue from the GraphQL response.
Fields§
§number: u64Issue number.
title: StringIssue title.
created_at: StringCreation timestamp (ISO 8601).
labels: LabelsIssue labels.
url: StringIssue URL (used by triage command).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IssueNode
impl<'de> Deserialize<'de> for IssueNode
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 IssueNode
impl RefUnwindSafe for IssueNode
impl Send for IssueNode
impl Sync for IssueNode
impl Unpin for IssueNode
impl UnsafeUnpin for IssueNode
impl UnwindSafe for IssueNode
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