github-api 0.4.3

Github v3 API bindings for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use types;

#[allow(missing_docs)]
#[derive(Debug, Deserialize)]
pub struct Commit {
    pub sha: String,
    pub node_id: String,
    pub commit: types::CommitInner,
    pub url: String,
    pub html_url: String,
    pub comments_url: String,
    pub author: types::User,
    pub committer: types::User,
    pub parents: Vec<types::UrlAndSha>,
}