[][src]Struct hubcaps::issues::Issue

pub struct Issue {
    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<String>,
    pub created_at: String,
    pub updated_at: String,
    pub assignees: Vec<User>,
}

Fields

id: u64url: Stringlabels_url: Stringcomments_url: Stringevents_url: Stringhtml_url: Stringnumber: u64state: Stringtitle: Stringbody: Option<String>user: Userlabels: Vec<Label>assignee: Option<User>locked: boolcomments: u64pull_request: Option<PullRef>closed_at: Option<String>created_at: Stringupdated_at: Stringassignees: Vec<User>

Trait Implementations

impl Debug for Issue[src]

impl<'de> Deserialize<'de> for Issue[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.