Struct git_cliff_core::remote::github::GitHubClient
source · pub struct GitHubClient { /* private fields */ }Available on (crate features
github or gitlab or bitbucket) and crate feature github only.Expand description
HTTP client for handling GitHub REST API requests.
Implementations§
source§impl GitHubClient
impl GitHubClient
sourcepub async fn get_commits(&self) -> Result<Vec<Box<dyn RemoteCommit>>>
pub async fn get_commits(&self) -> Result<Vec<Box<dyn RemoteCommit>>>
Fetches the GitHub API and returns the commits.
sourcepub async fn get_pull_requests(&self) -> Result<Vec<Box<dyn RemotePullRequest>>>
pub async fn get_pull_requests(&self) -> Result<Vec<Box<dyn RemotePullRequest>>>
Fetches the GitHub API and returns the pull requests.
Trait Implementations§
source§impl Clone for GitHubClient
impl Clone for GitHubClient
source§fn clone(&self) -> GitHubClient
fn clone(&self) -> GitHubClient
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GitHubClient
impl Debug for GitHubClient
source§impl RemoteClient for GitHubClient
impl RemoteClient for GitHubClient
source§fn client(&self) -> ClientWithMiddleware
fn client(&self) -> ClientWithMiddleware
Returns the HTTP client for making requests.
source§fn early_exit<T: DeserializeOwned + RemoteEntry>(&self, page: &T) -> bool
fn early_exit<T: DeserializeOwned + RemoteEntry>(&self, page: &T) -> bool
Returns true if the client should early exit.
source§async fn get_entry<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64,
page: i32
) -> Result<T>
async fn get_entry<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, page: i32 ) -> Result<T>
Retrieves a single object.
source§async fn get_entries_with_page<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64,
page: i32
) -> Result<Vec<T>>
async fn get_entries_with_page<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, page: i32 ) -> Result<Vec<T>>
Retrieves a single page of entries.
source§async fn fetch<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64
) -> Result<Vec<T>>
async fn fetch<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64 ) -> Result<Vec<T>>
Fetches the remote API and returns the given entry. Read more
source§async fn fetch_with_early_exit<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64
) -> Result<Vec<T>>
async fn fetch_with_early_exit<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64 ) -> Result<Vec<T>>
Fetches the remote API and returns the given entry. Read more
Auto Trait Implementations§
impl Freeze for GitHubClient
impl !RefUnwindSafe for GitHubClient
impl Send for GitHubClient
impl Sync for GitHubClient
impl Unpin for GitHubClient
impl !UnwindSafe for GitHubClient
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more