pub struct Client(/* private fields */);Implementations§
source§impl Client
impl Client
sourcepub fn query(
&self,
organization: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn query( &self, organization: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
List Approvals. This can be used to get a set of pending approvals in a pipeline, on an user or for a resource..
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project name
sourcepub fn update(
&self,
organization: impl Into<String>,
body: Vec<ApprovalUpdateParameters>,
project: impl Into<String>
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: Vec<ApprovalUpdateParameters>, project: impl Into<String> ) -> RequestBuilder
Update approvals.
Arguments:
organization: The name of the Azure DevOps organization.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