pub struct Issue9 {Show 32 fields
pub active_lock_reason: Option<String>,
pub assignee: Option<User1>,
pub assignees: Option<Vec<User1>>,
pub author_association: Option<String>,
pub body: Option<String>,
pub closed_at: Option<DateTime<Utc>>,
pub comments: Option<i64>,
pub comments_url: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub draft: Option<bool>,
pub events_url: Option<String>,
pub html_url: Option<String>,
pub id: Option<i64>,
pub labels: Option<Vec<Label>>,
pub labels_url: Option<String>,
pub locked: Option<bool>,
pub milestone: Option<Milestone1>,
pub node_id: Option<String>,
pub number: Option<i64>,
pub performed_via_github_app: Option<App1>,
pub pull_request: Option<WebhooksIssuePullRequest>,
pub reactions: Option<Reactions>,
pub repository_url: Option<String>,
pub sub_issues_summary: Option<SubissuesSummary>,
pub state: Option<String>,
pub state_reason: Option<String>,
pub timeline_url: Option<String>,
pub title: Option<String>,
pub _type: Option<IssueType>,
pub updated_at: Option<DateTime<Utc>>,
pub url: Option<String>,
pub user: Option<User>,
}Expand description
The issue itself.
Fields§
§active_lock_reason: Option<String>§assignee: Option<User1>§assignees: Option<Vec<User1>>How the author is associated with the repository.
body: Option<String>Contents of the issue
closed_at: Option<DateTime<Utc>>§comments: Option<i64>§comments_url: Option<String>§created_at: Option<DateTime<Utc>>§draft: Option<bool>§events_url: Option<String>§html_url: Option<String>§id: Option<i64>§labels: Option<Vec<Label>>§labels_url: Option<String>§locked: Option<bool>§milestone: Option<Milestone1>§node_id: Option<String>§number: Option<i64>§performed_via_github_app: Option<App1>§pull_request: Option<WebhooksIssuePullRequest>§reactions: Option<Reactions>§repository_url: Option<String>§sub_issues_summary: Option<SubissuesSummary>§state: Option<String>State of the issue; either ‘open’ or ‘closed’
state_reason: Option<String>§timeline_url: Option<String>§title: Option<String>Title of the issue
_type: Option<IssueType>§updated_at: Option<DateTime<Utc>>§url: Option<String>URL for the issue
user: Option<User>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issue9
impl<'de> Deserialize<'de> for Issue9
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 Issue9
Auto Trait Implementations§
impl Freeze for Issue9
impl RefUnwindSafe for Issue9
impl Send for Issue9
impl Sync for Issue9
impl Unpin for Issue9
impl UnwindSafe for Issue9
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