Struct azure_devops_rust_api::tfvc::shelvesets::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
Return a collection of shallow shelveset references.
Arguments:
organization: The name of the Azure DevOps organization.
sourcepub fn get(
&self,
organization: impl Into<String>,
shelveset_id: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, shelveset_id: impl Into<String>, ) -> RequestBuilder
Get a single deep shelveset.
Arguments:
organization: The name of the Azure DevOps organization.shelveset_id: Shelveset’s unique ID
sourcepub fn get_shelveset_changes(
&self,
organization: impl Into<String>,
shelveset_id: impl Into<String>,
) -> RequestBuilder
pub fn get_shelveset_changes( &self, organization: impl Into<String>, shelveset_id: impl Into<String>, ) -> RequestBuilder
Get changes included in a shelveset.
Arguments:
organization: The name of the Azure DevOps organization.shelveset_id: Shelveset’s unique ID
sourcepub fn get_shelveset_work_items(
&self,
organization: impl Into<String>,
shelveset_id: impl Into<String>,
) -> RequestBuilder
pub fn get_shelveset_work_items( &self, organization: impl Into<String>, shelveset_id: impl Into<String>, ) -> RequestBuilder
Get work items associated with a shelveset.
Arguments:
organization: The name of the Azure DevOps organization.shelveset_id: Shelveset’s unique ID
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