Struct azure_devops_rust_api::release::approvals::Client   
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
 
impl Client
sourcepub fn list(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>
) -> RequestBuilder
 
pub fn list( &self, organization: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Get a list of approvals
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
sourcepub fn update(
    &self,
    organization: impl Into<String>,
    body: impl Into<ReleaseApproval>,
    project: impl Into<String>,
    approval_id: i32
) -> RequestBuilder
 
pub fn update( &self, organization: impl Into<String>, body: impl Into<ReleaseApproval>, project: impl Into<String>, approval_id: i32 ) -> RequestBuilder
Update status of an approval
Arguments:
- organization: The name of the Azure DevOps organization.
- body: ReleaseApproval object having status, approver and comments.
- project: Project ID or project name
- approval_id: Id of the approval.
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