Struct azure_devops_rust_api::git::pull_request_iterations::Client   
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
 
impl Client
sourcepub fn list(
    &self,
    organization: impl Into<String>,
    repository_id: impl Into<String>,
    pull_request_id: i32,
    project: impl Into<String>
) -> RequestBuilder
 
pub fn list( &self, organization: impl Into<String>, repository_id: impl Into<String>, pull_request_id: i32, project: impl Into<String> ) -> RequestBuilder
Get the list of iterations for the specified pull request.
Arguments:
- organization: The name of the Azure DevOps organization.
- repository_id: ID or name of the repository.
- pull_request_id: ID of the pull request.
- project: Project ID or project name
sourcepub fn get(
    &self,
    organization: impl Into<String>,
    repository_id: impl Into<String>,
    pull_request_id: i32,
    iteration_id: i32,
    project: impl Into<String>
) -> RequestBuilder
 
pub fn get( &self, organization: impl Into<String>, repository_id: impl Into<String>, pull_request_id: i32, iteration_id: i32, project: impl Into<String> ) -> RequestBuilder
Get the specified iteration for a pull request.
Arguments:
- organization: The name of the Azure DevOps organization.
- repository_id: ID or name of the repository.
- pull_request_id: ID of the pull request.
- iteration_id: ID of the pull request iteration to return.
- 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