Struct azure_devops_rust_api::processes::lists::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn list(&self, organization: impl Into<String>) -> RequestBuilder
pub fn list(&self, organization: impl Into<String>) -> RequestBuilder
Returns meta data of the picklist.
Arguments:
organization
: The name of the Azure DevOps organization.
sourcepub fn create(
&self,
organization: impl Into<String>,
body: impl Into<PickList>
) -> RequestBuilder
pub fn create( &self, organization: impl Into<String>, body: impl Into<PickList> ) -> RequestBuilder
Creates a picklist.
Arguments:
organization
: The name of the Azure DevOps organization.body
: Picklist
sourcepub fn get(
&self,
organization: impl Into<String>,
list_id: impl Into<String>
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, list_id: impl Into<String> ) -> RequestBuilder
Returns a picklist.
Arguments:
organization
: The name of the Azure DevOps organization.list_id
: The ID of the list
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