pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn query(
&self,
organization: impl Into<String>,
body: impl Into<GraphSubjectQuery>,
) -> RequestBuilder
pub fn query( &self, organization: impl Into<String>, body: impl Into<GraphSubjectQuery>, ) -> RequestBuilder
Search for Azure Devops users, or/and groups. Results will be returned in a batch with no more than 100 graph subjects.
Arguments:
organization: The name of the Azure DevOps organization.body: The query that we’ll be using to search includes the following: Query: the search term. The search will be prefix matching only. SubjectKind: “User” or “Group” can be specified, both or either ScopeDescriptor: Non-default scope can be specified, i.e. project scope descriptor
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