[][src]Crate github_stats

Gets the stats of a Github repository.

Example

use github_stats::Repo;

let repo = Repo::new("rust-lang", "rust");

match repo {
    Ok(repo) => {/* Do some stuff */},
    Err(e) => eprintln!(":("),
}

Structs

Repo

Represents that stats of a Github repository.

Type Definitions

Error

This crate's standard error type.

Result

This crate's standard Result type.