pub struct Issue {Show 14 fields
pub number: String,
pub title: String,
pub state: IssueState,
pub body: Option<String>,
pub html_url: String,
pub user: Option<UserBasic>,
pub assignee: Option<UserBasic>,
pub labels: Option<Vec<Label>>,
pub security_hole: Option<bool>,
pub milestone: Option<Milestone>,
pub comments: Option<i64>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub repository: Option<IssueRepoRef>,
}Fields§
§number: String§title: String§state: IssueState§body: Option<String>§html_url: String§user: Option<UserBasic>§assignee: Option<UserBasic>§labels: Option<Vec<Label>>§security_hole: Option<bool>§milestone: Option<Milestone>§comments: Option<i64>§created_at: Option<String>§updated_at: Option<String>§repository: Option<IssueRepoRef>Present on user-level lists (GET /user/issues); absent on repo lists.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issue
impl<'de> Deserialize<'de> for Issue
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 Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnsafeUnpin for Issue
impl UnwindSafe for Issue
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