pub struct GHIssueResponse {
pub url: String,
pub number: u32,
pub state: String,
pub title: String,
}Expand description
Data Structure to parse responses from the Github API.
Fields§
§url: StringRepository URL.
number: u32Issue number.
state: StringCurrent state of the Issue.
title: StringTitle of the Issue.
Trait Implementations§
Source§impl Clone for GHIssueResponse
impl Clone for GHIssueResponse
Source§fn clone(&self) -> GHIssueResponse
fn clone(&self) -> GHIssueResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GHIssueResponse
impl Debug for GHIssueResponse
Source§impl Deserialize for GHIssueResponse
impl Deserialize for GHIssueResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GHIssueResponse
impl RefUnwindSafe for GHIssueResponse
impl Send for GHIssueResponse
impl Sync for GHIssueResponse
impl Unpin for GHIssueResponse
impl UnwindSafe for GHIssueResponse
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