Struct github_rest::model::issues::Issue
source · pub struct Issue {Show 21 fields
pub assignee: Option<SimpleUser>,
pub closed_at: Option<String>,
pub comments: i64,
pub comments_url: String,
pub events_url: String,
pub html_url: String,
pub id: i64,
pub node_id: String,
pub labels: Vec<StringOrLabel>,
pub labels_url: String,
pub milestone: Option<Milestone>,
pub number: i64,
pub repository_url: String,
pub state: IssueState,
pub locked: bool,
pub title: String,
pub url: String,
pub user: Option<SimpleUser>,
pub author_association: Association,
pub created_at: String,
pub updated_at: String,
}
Expand description
Fields§
§assignee: Option<SimpleUser>
§closed_at: Option<String>
§comments: i64
§comments_url: String
§events_url: String
§html_url: String
§id: i64
§node_id: String
§labels: Vec<StringOrLabel>
§labels_url: String
§milestone: Option<Milestone>
§number: i64
§repository_url: String
§state: IssueState
§locked: bool
§title: String
§url: String
§user: Option<SimpleUser>
§created_at: String
§updated_at: String
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
source§impl PartialEq<Issue> for Issue
impl PartialEq<Issue> for Issue
impl StructuralPartialEq for Issue
Auto Trait Implementations§
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin 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