pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32,
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, plan_id: i32, suite_id: i32, ) -> RequestBuilder
Get a list of test points.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nameplan_id: ID of the test plan.suite_id: ID of the suite that contains the points.
Sourcepub fn get_point(
&self,
organization: impl Into<String>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32,
point_ids: i32,
) -> RequestBuilder
pub fn get_point( &self, organization: impl Into<String>, project: impl Into<String>, plan_id: i32, suite_id: i32, point_ids: i32, ) -> RequestBuilder
Get a test point.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nameplan_id: ID of the test plan.suite_id: ID of the suite that contains the point.point_ids: ID of the test point to get.
Sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<PointUpdateModel>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32,
point_ids: impl Into<String>,
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<PointUpdateModel>, project: impl Into<String>, plan_id: i32, suite_id: i32, point_ids: impl Into<String>, ) -> RequestBuilder
Update test points.
Arguments:
organization: The name of the Azure DevOps organization.body: Data to update.project: Project ID or project nameplan_id: ID of the test plan.suite_id: ID of the suite that contains the points.point_ids: ID of the test point to get. Use a comma-separated list of IDs to update multiple test points.
Sourcepub fn get_points_by_query(
&self,
organization: impl Into<String>,
body: impl Into<TestPointsQuery>,
project: impl Into<String>,
) -> RequestBuilder
pub fn get_points_by_query( &self, organization: impl Into<String>, body: impl Into<TestPointsQuery>, project: impl Into<String>, ) -> RequestBuilder
Get test points using query.
Arguments:
organization: The name of the Azure DevOps organization.body: TestPointsQuery to get test points.project: Project ID or project name
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