pub struct GraphGroupVstsCreationContext {
pub graph_group_creation_context: GraphGroupCreationContext,
pub cross_project: Option<bool>,
pub description: Option<String>,
pub descriptor: Option<String>,
pub display_name: Option<String>,
pub restricted_visibility: Option<bool>,
pub special_group_type: Option<String>,
}Expand description
Use this type to create a new Vsts group that is not backed by an external provider.
Fields§
§graph_group_creation_context: GraphGroupCreationContext§cross_project: Option<bool>For internal use only in back compat scenarios.
description: Option<String>Used by VSTS groups; if set this will be the group description, otherwise ignored
descriptor: Option<String>§display_name: Option<String>Used by VSTS groups; if set this will be the group DisplayName, otherwise ignored
restricted_visibility: Option<bool>For internal use only in back compat scenarios.
special_group_type: Option<String>For internal use only in back compat scenarios.
Implementations§
Trait Implementations§
source§impl Clone for GraphGroupVstsCreationContext
impl Clone for GraphGroupVstsCreationContext
source§fn clone(&self) -> GraphGroupVstsCreationContext
fn clone(&self) -> GraphGroupVstsCreationContext
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 Default for GraphGroupVstsCreationContext
impl Default for GraphGroupVstsCreationContext
source§fn default() -> GraphGroupVstsCreationContext
fn default() -> GraphGroupVstsCreationContext
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GraphGroupVstsCreationContext
impl<'de> Deserialize<'de> for GraphGroupVstsCreationContext
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 GraphGroupVstsCreationContext
impl PartialEq for GraphGroupVstsCreationContext
source§fn eq(&self, other: &GraphGroupVstsCreationContext) -> bool
fn eq(&self, other: &GraphGroupVstsCreationContext) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GraphGroupVstsCreationContext
Auto Trait Implementations§
impl RefUnwindSafe for GraphGroupVstsCreationContext
impl Send for GraphGroupVstsCreationContext
impl Sync for GraphGroupVstsCreationContext
impl Unpin for GraphGroupVstsCreationContext
impl UnwindSafe for GraphGroupVstsCreationContext
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