Struct azure_devops_rust_api::graph::models::AadGraphMember
source · pub struct AadGraphMember {
pub graph_member: GraphMember,
pub directory_alias: Option<String>,
pub is_deleted_in_origin: Option<bool>,
pub meta_type: Option<String>,
}
Expand description
Fields§
§graph_member: GraphMember
§directory_alias: Option<String>
The short, generally unique name for the user in the backing directory. For AAD users, this corresponds to the mail nickname, which is often but not necessarily similar to the part of the user’s mail address before the @ sign. For GitHub users, this corresponds to the GitHub user handle.
is_deleted_in_origin: Option<bool>
When true, the group has been deleted in the identity provider
meta_type: Option<String>
The meta type of the user in the origin, such as “member”, “guest”, etc. See UserMetaType for the set of possible values.
Implementations§
Trait Implementations§
source§impl Clone for AadGraphMember
impl Clone for AadGraphMember
source§fn clone(&self) -> AadGraphMember
fn clone(&self) -> AadGraphMember
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 AadGraphMember
impl Debug for AadGraphMember
source§impl Default for AadGraphMember
impl Default for AadGraphMember
source§fn default() -> AadGraphMember
fn default() -> AadGraphMember
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AadGraphMember
impl<'de> Deserialize<'de> for AadGraphMember
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 AadGraphMember
impl PartialEq for AadGraphMember
source§fn eq(&self, other: &AadGraphMember) -> bool
fn eq(&self, other: &AadGraphMember) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AadGraphMember
impl Serialize for AadGraphMember
impl StructuralPartialEq for AadGraphMember
Auto Trait Implementations§
impl Freeze for AadGraphMember
impl RefUnwindSafe for AadGraphMember
impl Send for AadGraphMember
impl Sync for AadGraphMember
impl Unpin for AadGraphMember
impl UnwindSafe for AadGraphMember
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