Struct azure_devops_rust_api::git::merge_bases::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn list(
&self,
organization: impl Into<String>,
repository_name_or_id: impl Into<String>,
commit_id: impl Into<String>,
other_commit_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, repository_name_or_id: impl Into<String>, commit_id: impl Into<String>, other_commit_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Find the merge bases of two commits, optionally across forks. If otherRepositoryId is not specified, the merge bases will only be calculated within the context of the local repositoryNameOrId.
Arguments:
organization
: The name of the Azure DevOps organization.repository_name_or_id
: ID or name of the local repository.commit_id
: First commit, usually the tip of the target branch of the potential merge.other_commit_id
: Other commit, usually the tip of the source branch of the potential merge.project
: Project ID or project name
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