pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn add(
&self,
organization: impl Into<String>,
body: impl Into<TaskGroupCreateParameter>,
project: impl Into<String>,
) -> RequestBuilder
pub fn add( &self, organization: impl Into<String>, body: impl Into<TaskGroupCreateParameter>, project: impl Into<String>, ) -> RequestBuilder
Create a task group.
Arguments:
organization: The name of the Azure DevOps organization.body: Task group object to create.project: Project ID or project name
Sourcepub fn list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
task_group_id: impl Into<String>,
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, task_group_id: impl Into<String>, ) -> RequestBuilder
List task groups.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nametask_group_id: Id of the task group.
Sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<TaskGroupUpdateParameter>,
project: impl Into<String>,
task_group_id: impl Into<String>,
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<TaskGroupUpdateParameter>, project: impl Into<String>, task_group_id: impl Into<String>, ) -> RequestBuilder
Update a task group.
Arguments:
organization: The name of the Azure DevOps organization.body: Task group to update.project: Project ID or project nametask_group_id: Id of the task group to update.
Sourcepub fn delete(
&self,
organization: impl Into<String>,
project: impl Into<String>,
task_group_id: impl Into<String>,
) -> RequestBuilder
pub fn delete( &self, organization: impl Into<String>, project: impl Into<String>, task_group_id: impl Into<String>, ) -> RequestBuilder
Delete a task group.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nametask_group_id: Id of the task group to be deleted.
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