Struct azure_devops_rust_api::processes::system_controls::Client
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
impl Client
sourcepub fn list(
&self,
organization: impl Into<String>,
process_id: impl Into<String>,
wit_ref_name: impl Into<String>
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, process_id: impl Into<String>, wit_ref_name: impl Into<String> ) -> RequestBuilder
Gets edited system controls for a work item type in a process. To get all system controls (base + edited) use layout API(s)
Arguments:
organization: The name of the Azure DevOps organization.process_id: The ID of the process.wit_ref_name: The reference name of the work item type.
sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<Control>,
process_id: impl Into<String>,
wit_ref_name: impl Into<String>,
control_id: impl Into<String>
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<Control>, process_id: impl Into<String>, wit_ref_name: impl Into<String>, control_id: impl Into<String> ) -> RequestBuilder
Updates/adds a system control on the work item form.
Arguments:
organization: The name of the Azure DevOps organization.process_id: The ID of the process.wit_ref_name: The reference name of the work item type.control_id: The ID of the control.
sourcepub fn delete(
&self,
organization: impl Into<String>,
process_id: impl Into<String>,
wit_ref_name: impl Into<String>,
control_id: impl Into<String>
) -> RequestBuilder
pub fn delete( &self, organization: impl Into<String>, process_id: impl Into<String>, wit_ref_name: impl Into<String>, control_id: impl Into<String> ) -> RequestBuilder
Deletes a system control modification on the work item form.
Arguments:
organization: The name of the Azure DevOps organization.process_id: The ID of the process.wit_ref_name: The reference name of the work item type.control_id: The ID of the control.
Auto Trait Implementations§
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