pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Get a list of test configurations.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project name
Sourcepub fn create(
&self,
organization: impl Into<String>,
body: impl Into<TestConfigurationCreateUpdateParameters>,
project: impl Into<String>,
) -> RequestBuilder
pub fn create( &self, organization: impl Into<String>, body: impl Into<TestConfigurationCreateUpdateParameters>, project: impl Into<String>, ) -> RequestBuilder
Create a test configuration.
Arguments:
organization: The name of the Azure DevOps organization.body: TestConfigurationCreateUpdateParametersproject: Project ID or project name
Sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<TestConfigurationCreateUpdateParameters>,
project: impl Into<String>,
test_configuartion_id: i32,
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<TestConfigurationCreateUpdateParameters>, project: impl Into<String>, test_configuartion_id: i32, ) -> RequestBuilder
Update a test configuration by its ID.
Arguments:
organization: The name of the Azure DevOps organization.body: TestConfigurationCreateUpdateParametersproject: Project ID or project nametest_configuartion_id: ID of the test configuration to update.
Sourcepub fn delete(
&self,
organization: impl Into<String>,
project: impl Into<String>,
test_configuartion_id: i32,
) -> RequestBuilder
pub fn delete( &self, organization: impl Into<String>, project: impl Into<String>, test_configuartion_id: i32, ) -> RequestBuilder
Delete a test configuration by its ID.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nametest_configuartion_id: ID of the test configuration to delete.
Sourcepub fn get(
&self,
organization: impl Into<String>,
project: impl Into<String>,
test_configuration_id: i32,
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, project: impl Into<String>, test_configuration_id: i32, ) -> RequestBuilder
Get a test configuration
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nametest_configuration_id: ID of the test configuration to get.
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