Struct azure_devops_rust_api::git::cherry_picks::Client   
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
 
impl Client
sourcepub fn get_cherry_pick_for_ref_name(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>,
    repository_id: impl Into<String>,
    ref_name: impl Into<String>
) -> RequestBuilder
 
pub fn get_cherry_pick_for_ref_name( &self, organization: impl Into<String>, project: impl Into<String>, repository_id: impl Into<String>, ref_name: impl Into<String> ) -> RequestBuilder
Retrieve information about a cherry pick operation for a specific branch. This operation is expensive due to the underlying object structure, so this API only looks at the 1000 most recent cherry pick operations.
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
- repository_id: ID of the repository.
- ref_name: The GitAsyncRefOperationParameters generatedRefName used for the cherry pick operation.
sourcepub fn create(
    &self,
    organization: impl Into<String>,
    body: impl Into<GitAsyncRefOperationParameters>,
    project: impl Into<String>,
    repository_id: impl Into<String>
) -> RequestBuilder
 
pub fn create( &self, organization: impl Into<String>, body: impl Into<GitAsyncRefOperationParameters>, project: impl Into<String>, repository_id: impl Into<String> ) -> RequestBuilder
Cherry pick a specific commit or commits that are associated to a pull request into a new branch.
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
- repository_id: ID of the repository.
sourcepub fn get_cherry_pick(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>,
    cherry_pick_id: i32,
    repository_id: impl Into<String>
) -> RequestBuilder
 
pub fn get_cherry_pick( &self, organization: impl Into<String>, project: impl Into<String>, cherry_pick_id: i32, repository_id: impl Into<String> ) -> RequestBuilder
Retrieve information about a cherry pick operation by cherry pick Id.
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
- cherry_pick_id: ID of the cherry pick.
- repository_id: ID of the repository.
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