Struct github_rs::repos::get::Pulls
[−]
[src]
pub struct Pulls<'g> { /* fields omitted */ }
Methods
impl<'g> Pulls<'g>
[src]
fn comments(self) -> PullsComments<'g>
[src]
impl<'g> Pulls<'g>
[src]
fn number(self, number_str: &str) -> PullsNumber<'g>
[src]
Trait Implementations
impl<'g> From<Repo<'g>> for Pulls<'g>
[src]
impl<'a> Executor for Pulls<'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.