pub struct Issue {Show 20 fields
pub id: u64,
pub url: String,
pub labels_url: String,
pub comments_url: String,
pub events_url: String,
pub html_url: String,
pub number: u64,
pub state: String,
pub title: String,
pub body: Option<String>,
pub user: User,
pub labels: Vec<Label>,
pub assignee: Option<User>,
pub locked: bool,
pub comments: u64,
pub pull_request: Option<PullRef>,
pub closed_at: Option<DateTime>,
pub created_at: DateTime,
pub updated_at: DateTime,
pub assignees: Vec<User>,
}
Fields§
§id: u64
§url: String
§labels_url: String
§comments_url: String
§events_url: String
§html_url: String
§number: u64
§state: String
§title: String
§body: Option<String>
§user: User
§labels: Vec<Label>
§assignee: Option<User>
§locked: bool
§comments: u64
§pull_request: Option<PullRef>
§closed_at: Option<DateTime>
§created_at: DateTime
§updated_at: DateTime
§assignees: Vec<User>
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 Ord for Issue
impl Ord for Issue
Source§impl PartialOrd for Issue
impl PartialOrd for Issue
impl Eq for Issue
impl StructuralPartialEq for Issue
Auto Trait Implementations§
impl Freeze for Issue
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