github-api 0.4.3

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

#[allow(missing_docs)]
#[derive(Debug, Deserialize)]
pub struct CommitInner {
    pub url: String,
    pub author: types::UserCommitDetail,
    pub committer: types::UserCommitDetail,
    pub message: String,
    pub tree: types::UrlAndSha,
    pub comment_count: u32,
    pub verification: types::Verification,
}