pub struct GiteaClient { /* private fields */ }
Available on crate features
remote
and gitea
only.Expand description
HTTP client for handling Gitea REST API requests.
Implementations§
Source§impl GiteaClient
impl GiteaClient
Sourcepub async fn get_commits(
&self,
ref_name: Option<&str>,
) -> Result<Vec<Box<dyn RemoteCommit>>>
pub async fn get_commits( &self, ref_name: Option<&str>, ) -> Result<Vec<Box<dyn RemoteCommit>>>
Fetches the Gitea API and returns the commits.
Sourcepub async fn get_pull_requests(
&self,
ref_name: Option<&str>,
) -> Result<Vec<Box<dyn RemotePullRequest>>>
pub async fn get_pull_requests( &self, ref_name: Option<&str>, ) -> Result<Vec<Box<dyn RemotePullRequest>>>
Fetches the Gitea API and returns the pull requests.
Trait Implementations§
Source§impl Clone for GiteaClient
impl Clone for GiteaClient
Source§fn clone(&self) -> GiteaClient
fn clone(&self) -> GiteaClient
Returns a duplicate 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 GiteaClient
impl Debug for GiteaClient
Source§impl RemoteClient for GiteaClient
impl RemoteClient for GiteaClient
Source§const API_URL_ENV: &'static str = "GITEA_API_URL"
const API_URL_ENV: &'static str = "GITEA_API_URL"
Name of the environment variable used to set the API URL to a
self-hosted instance (if applicable).
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,
ref_name: Option<&str>,
page: i32,
) -> Result<T>
async fn get_entry<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, ref_name: Option<&str>, page: i32, ) -> Result<T>
Retrieves a single object.
Source§async fn get_entries_with_page<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64,
ref_name: Option<&str>,
page: i32,
) -> Result<Vec<T>>
async fn get_entries_with_page<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, ref_name: Option<&str>, page: i32, ) -> Result<Vec<T>>
Retrieves a single page of entries.
Source§async fn fetch<T: DeserializeOwned + RemoteEntry>(
&self,
project_id: i64,
ref_name: Option<&str>,
) -> Result<Vec<T>>
async fn fetch<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, ref_name: Option<&str>, ) -> 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,
ref_name: Option<&str>,
) -> Result<Vec<T>>
async fn fetch_with_early_exit<T: DeserializeOwned + RemoteEntry>( &self, project_id: i64, ref_name: Option<&str>, ) -> Result<Vec<T>>
Fetches the remote API and returns the given entry. Read more
Auto Trait Implementations§
impl Freeze for GiteaClient
impl !RefUnwindSafe for GiteaClient
impl Send for GiteaClient
impl Sync for GiteaClient
impl Unpin for GiteaClient
impl !UnwindSafe for GiteaClient
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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