pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get_global_permissions(
&self,
organization: impl Into<String>,
) -> RequestBuilder
pub fn get_global_permissions( &self, organization: impl Into<String>, ) -> RequestBuilder
Get all service-wide feed creation and administration permissions.
Arguments:
organization: The name of the Azure DevOps organization.
Sourcepub fn set_global_permissions(
&self,
organization: impl Into<String>,
body: Vec<GlobalPermission>,
) -> RequestBuilder
pub fn set_global_permissions( &self, organization: impl Into<String>, body: Vec<GlobalPermission>, ) -> RequestBuilder
Set service-wide permissions that govern feed creation and administration.
Arguments:
organization: The name of the Azure DevOps organization.body: New permissions for the organization.
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