Struct azure_devops_rust_api::graph::models::GraphSubjectQuery
source · pub struct GraphSubjectQuery {
pub query: Option<String>,
pub scope_descriptor: Option<String>,
pub subject_kind: Vec<String>,
}Expand description
Subject to search using the Graph API
Fields§
§query: Option<String>Search term to search for Azure Devops users or/and groups
scope_descriptor: Option<String>Optional parameter. Specify a non-default scope (collection, project) to search for users or groups within the scope.
subject_kind: Vec<String>“User” or “Group” can be specified, both or either
Implementations§
Trait Implementations§
source§impl Clone for GraphSubjectQuery
impl Clone for GraphSubjectQuery
source§fn clone(&self) -> GraphSubjectQuery
fn clone(&self) -> GraphSubjectQuery
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GraphSubjectQuery
impl Debug for GraphSubjectQuery
source§impl Default for GraphSubjectQuery
impl Default for GraphSubjectQuery
source§fn default() -> GraphSubjectQuery
fn default() -> GraphSubjectQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GraphSubjectQuery
impl<'de> Deserialize<'de> for GraphSubjectQuery
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for GraphSubjectQuery
impl PartialEq for GraphSubjectQuery
source§fn eq(&self, other: &GraphSubjectQuery) -> bool
fn eq(&self, other: &GraphSubjectQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for GraphSubjectQuery
impl Serialize for GraphSubjectQuery
impl StructuralPartialEq for GraphSubjectQuery
Auto Trait Implementations§
impl Freeze for GraphSubjectQuery
impl RefUnwindSafe for GraphSubjectQuery
impl Send for GraphSubjectQuery
impl Sync for GraphSubjectQuery
impl Unpin for GraphSubjectQuery
impl UnwindSafe for GraphSubjectQuery
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