pub struct AzureDevOpsClient { /* private fields */ }Available on crate features
remote and azure_devops only.Expand description
HTTP client for handling Azure DevOps REST API requests.
Implementations§
Source§impl AzureDevOpsClient
impl AzureDevOpsClient
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 complete list of commits.
This is inefficient for large repositories; consider using
get_commit_stream instead.
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 complete list of pull requests.
This is inefficient for large repositories; consider using
get_pull_request_stream instead.
Trait Implementations§
Source§impl Clone for AzureDevOpsClient
impl Clone for AzureDevOpsClient
Source§fn clone(&self) -> AzureDevOpsClient
fn clone(&self) -> AzureDevOpsClient
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 AzureDevOpsClient
impl Debug for AzureDevOpsClient
Source§impl RemoteClient for AzureDevOpsClient
impl RemoteClient for AzureDevOpsClient
Source§const API_URL_ENV: &'static str = "AZURE_DEVOPS_API_URL"
const API_URL_ENV: &'static str = "AZURE_DEVOPS_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§async fn get_json<T: DeserializeOwned>(&self, url: &str) -> Result<T>
async fn get_json<T: DeserializeOwned>(&self, url: &str) -> Result<T>
Performs a HTTP GET request, deserializes the JSON response, and returns the result.
This is the core HTTP request and JSON parsing logic shared by all API methods.
Callers are responsible for any additional processing of the deserialized data.
Auto Trait Implementations§
impl Freeze for AzureDevOpsClient
impl !RefUnwindSafe for AzureDevOpsClient
impl Send for AzureDevOpsClient
impl Sync for AzureDevOpsClient
impl Unpin for AzureDevOpsClient
impl UnsafeUnpin for AzureDevOpsClient
impl !UnwindSafe for AzureDevOpsClient
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