Struct azure_devops_rust_api::tfvc::items::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn get(
&self,
organization: impl Into<String>,
path: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, path: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Get Item Metadata and/or Content for a single item. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn’t apply to zipped content which is always returned as a download.
Arguments:
organization
: The name of the Azure DevOps organization.path
: Version control path of an individual item to return.project
: Project ID or project name
sourcepub fn get_items_batch(
&self,
organization: impl Into<String>,
body: impl Into<TfvcItemRequestData>,
project: impl Into<String>
) -> RequestBuilder
pub fn get_items_batch( &self, organization: impl Into<String>, body: impl Into<TfvcItemRequestData>, project: impl Into<String> ) -> RequestBuilder
Post for retrieving a set of items given a list of paths or a long path. Allows for specifying the recursionLevel and version descriptors for each path.
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project name
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