pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn create_requests_request_name_debug_entries(
&self,
organization: impl Into<String>,
body: impl Into<DebugEntryCreateBatch>,
request_name: impl Into<String>,
collection: impl Into<String>,
) -> RequestBuilder
pub fn create_requests_request_name_debug_entries( &self, organization: impl Into<String>, body: impl Into<DebugEntryCreateBatch>, request_name: impl Into<String>, collection: impl Into<String>, ) -> RequestBuilder
Create debug entries for a symbol request as specified by its name.
Arguments:
organization: The name of the Azure DevOps organization.body: A batch that contains debug entries to create.request_name: The symbol request name.collection: A valid debug entry collection name. Must be “debugentries”.
Sourcepub fn get_requests_request_name(
&self,
organization: impl Into<String>,
request_name: impl Into<String>,
) -> RequestBuilder
pub fn get_requests_request_name( &self, organization: impl Into<String>, request_name: impl Into<String>, ) -> RequestBuilder
Get a symbol request by request name.
Arguments:
organization: The name of the Azure DevOps organization.request_name: The symbol request name.
Sourcepub fn create_requests(
&self,
organization: impl Into<String>,
body: impl Into<Request>,
) -> RequestBuilder
pub fn create_requests( &self, organization: impl Into<String>, body: impl Into<Request>, ) -> RequestBuilder
Create a new symbol request.
Arguments:
organization: The name of the Azure DevOps organization.body: The symbol request to create.
Sourcepub fn update_requests_request_name(
&self,
organization: impl Into<String>,
body: impl Into<Request>,
request_name: impl Into<String>,
) -> RequestBuilder
pub fn update_requests_request_name( &self, organization: impl Into<String>, body: impl Into<Request>, request_name: impl Into<String>, ) -> RequestBuilder
Update a symbol request by request name.
Arguments:
organization: The name of the Azure DevOps organization.body: The symbol request.request_name: The symbol request name.
Sourcepub fn delete_requests_request_name(
&self,
organization: impl Into<String>,
request_name: impl Into<String>,
) -> RequestBuilder
pub fn delete_requests_request_name( &self, organization: impl Into<String>, request_name: impl Into<String>, ) -> RequestBuilder
Delete a symbol request by request name.
Arguments:
organization: The name of the Azure DevOps organization.request_name: The symbol request name.
Sourcepub fn get_requests_request_id(
&self,
organization: impl Into<String>,
request_id: impl Into<String>,
) -> RequestBuilder
pub fn get_requests_request_id( &self, organization: impl Into<String>, request_id: impl Into<String>, ) -> RequestBuilder
Get a symbol request by request identifier.
Arguments:
organization: The name of the Azure DevOps organization.request_id: The symbol request identifier.
Sourcepub fn create_requests_request_id_debug_entries(
&self,
organization: impl Into<String>,
body: impl Into<DebugEntryCreateBatch>,
request_id: impl Into<String>,
collection: impl Into<String>,
) -> RequestBuilder
pub fn create_requests_request_id_debug_entries( &self, organization: impl Into<String>, body: impl Into<DebugEntryCreateBatch>, request_id: impl Into<String>, collection: impl Into<String>, ) -> RequestBuilder
Create debug entries for a symbol request as specified by its identifier.
Arguments:
organization: The name of the Azure DevOps organization.body: A batch that contains debug entries to create.request_id: The symbol request identifier.collection: A valid debug entry collection name. Must be “debugentries”.
Sourcepub fn update_requests_request_id(
&self,
organization: impl Into<String>,
body: impl Into<Request>,
request_id: impl Into<String>,
) -> RequestBuilder
pub fn update_requests_request_id( &self, organization: impl Into<String>, body: impl Into<Request>, request_id: impl Into<String>, ) -> RequestBuilder
Update a symbol request by request identifier.
Arguments:
organization: The name of the Azure DevOps organization.body: The symbol request.request_id: The symbol request identifier.
Sourcepub fn delete_requests_request_id(
&self,
organization: impl Into<String>,
request_id: impl Into<String>,
) -> RequestBuilder
pub fn delete_requests_request_id( &self, organization: impl Into<String>, request_id: impl Into<String>, ) -> RequestBuilder
Delete a symbol request by request identifier.
Arguments:
organization: The name of the Azure DevOps organization.request_id: The symbol request identifier.
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