Struct azure_devops_rust_api::tfvc::branches::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 a single branch hierarchy at the given path with parents or children as specified.
Arguments:
- organization: The name of the Azure DevOps organization.
- path: Full path to the branch. Default: $/ Examples: $/, $/MyProject, $/MyProject/SomeFolder.
- project: Project ID or project name
sourcepub fn get_branches(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>
) -> RequestBuilder
 
pub fn get_branches( &self, organization: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Get a collection of branch roots – first-level children, branches with no parents.
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
sourcepub fn get_branch_refs(
    &self,
    organization: impl Into<String>,
    scope_path: impl Into<String>,
    project: impl Into<String>
) -> RequestBuilder
 
pub fn get_branch_refs( &self, organization: impl Into<String>, scope_path: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Get branch hierarchies below the specified scopePath
Arguments:
- organization: The name of the Azure DevOps organization.
- scope_path: Full path to the branch. Default: $/ Examples: $/, $/MyProject, $/MyProject/SomeFolder.
- 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