Struct github_rs::repos::get::Repo
[−]
[src]
pub struct Repo<'g> { /* fields omitted */ }
Methods
impl<'g> Repo<'g>
[src]
fn assignees(self) -> Assignees<'g>
[src]
fn branches(self) -> Branches<'g>
[src]
fn collaborators(self) -> Collaborators<'g>
[src]
fn commits(self) -> Commits<'g>
[src]
fn contents(self) -> Contents<'g>
[src]
fn pulls(self) -> Pulls<'g>
[src]
fn issues(self) -> Issues<'g>
[src]
Trait Implementations
impl<'g> From<Owner<'g>> for Repo<'g>
[src]
impl<'a> Executor for Repo<'a>
[src]
fn execute<T>(self) -> Result<(Headers, StatusCode, Option<T>)> where
T: DeserializeOwned,
[src]
T: DeserializeOwned,
Execute the query by sending the built up request to GitHub. The value returned is either an error or the Status Code and Json after it has been deserialized. Please take a look at the GitHub documenation to see what value you should receive back for good or bad requests.