[][src]Struct codealong_github::PullRequest

pub struct PullRequest {
    pub id: u64,
    pub url: Option<String>,
    pub number: u64,
    pub base: Ref,
    pub head: Ref,
    pub html_url: Option<String>,
    pub state: Option<String>,
    pub title: Option<String>,
    pub body: Option<String>,
    pub user: User,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub closed_at: Option<DateTime<Utc>>,
    pub merged_at: Option<DateTime<Utc>>,
}

Fields

id: u64url: Option<String>number: u64base: Refhead: Refhtml_url: Option<String>state: Option<String>title: Option<String>body: Option<String>user: Usercreated_at: DateTime<Utc>updated_at: DateTime<Utc>closed_at: Option<DateTime<Utc>>merged_at: Option<DateTime<Utc>>

Trait Implementations

impl Clone for PullRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<PullRequest> for PullRequest[src]

impl Debug for PullRequest[src]

impl Serialize for PullRequest[src]

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

Auto Trait Implementations

impl Send for PullRequest

impl Sync for PullRequest

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]