Struct azure_devops_rust_api::git::stats::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn get(
&self,
organization: impl Into<String>,
repository_id: impl Into<String>,
name: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, repository_id: impl Into<String>, name: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Retrieve statistics about a single branch.
Arguments:
organization
: The name of the Azure DevOps organization.repository_id
: The name or ID of the repository.name
: Name of the branch.project
: Project ID or project name
sourcepub fn list(
&self,
organization: impl Into<String>,
repository_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, repository_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Retrieve statistics about all branches within a repository.
Arguments:
organization
: The name of the Azure DevOps organization.repository_id
: The name or ID of the repository.project
: Project ID or project name
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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