Struct azure_devops_rust_api::work::models::GraphSubjectBase   
source · pub struct GraphSubjectBase {
    pub links: Option<Value>,
    pub descriptor: Option<String>,
    pub display_name: Option<String>,
    pub url: Option<String>,
}Expand description
Fields§
§links: Option<Value>Links
descriptor: Option<String>The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
display_name: Option<String>This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
url: Option<String>This url is the full route to the source resource of this graph subject.
Implementations§
Trait Implementations§
source§impl Clone for GraphSubjectBase
 
impl Clone for GraphSubjectBase
source§fn clone(&self) -> GraphSubjectBase
 
fn clone(&self) -> GraphSubjectBase
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 GraphSubjectBase
 
impl Debug for GraphSubjectBase
source§impl Default for GraphSubjectBase
 
impl Default for GraphSubjectBase
source§fn default() -> GraphSubjectBase
 
fn default() -> GraphSubjectBase
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GraphSubjectBase
 
impl<'de> Deserialize<'de> for GraphSubjectBase
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 GraphSubjectBase
 
impl PartialEq for GraphSubjectBase
source§fn eq(&self, other: &GraphSubjectBase) -> bool
 
fn eq(&self, other: &GraphSubjectBase) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for GraphSubjectBase
 
impl Serialize for GraphSubjectBase
impl StructuralPartialEq for GraphSubjectBase
Auto Trait Implementations§
impl RefUnwindSafe for GraphSubjectBase
impl Send for GraphSubjectBase
impl Sync for GraphSubjectBase
impl Unpin for GraphSubjectBase
impl UnwindSafe for GraphSubjectBase
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