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 the information for all the plans configured for the given team
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<CreatePlan>,
project: impl Into<String>,
) -> RequestBuilder
pub fn create( &self, organization: impl Into<String>, body: impl Into<CreatePlan>, project: impl Into<String>, ) -> RequestBuilder
Add a new plan for the team
Arguments:
organization: The name of the Azure DevOps organization.body: Plan definitionproject: Project ID or project name
Sourcepub fn get(
&self,
organization: impl Into<String>,
project: impl Into<String>,
id: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, project: impl Into<String>, id: impl Into<String>, ) -> RequestBuilder
Get the information for the specified plan
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nameid: Identifier of the plan
Sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<UpdatePlan>,
project: impl Into<String>,
id: impl Into<String>,
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<UpdatePlan>, project: impl Into<String>, id: impl Into<String>, ) -> RequestBuilder
Update the information for the specified plan
Arguments:
organization: The name of the Azure DevOps organization.body: Plan definition to be updatedproject: Project ID or project nameid: Identifier of the plan
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