Struct azure_devops_rust_api::symbol::client::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn head_client(&self, organization: impl Into<String>) -> RequestBuilder
pub fn head_client(&self, organization: impl Into<String>) -> RequestBuilder
Get client version information.
Arguments:
organization
: The name of the Azure DevOps organization.
sourcepub fn get(
&self,
organization: impl Into<String>,
client_type: impl Into<String>
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, client_type: impl Into<String> ) -> RequestBuilder
Get the client package.
Arguments:
organization
: The name of the Azure DevOps organization.client_type
: Either “EXE” for a zip file containing a Windows symbol client (a.k.a. symbol.exe) along with dependencies, or “TASK” for a VSTS task that can be run on a VSTS build agent. All the other values are invalid. The parameter is case-insensitive.
Auto Trait Implementations§
impl Freeze for Client
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