Struct azure_devops_rust_api::build::models::VariableGroup
source · pub struct VariableGroup {
pub variable_group_reference: VariableGroupReference,
pub description: Option<String>,
pub name: Option<String>,
pub type_: Option<String>,
pub variables: Option<Value>,
}Expand description
Represents a variable group.
Fields§
§variable_group_reference: VariableGroupReference§description: Option<String>The description.
name: Option<String>The name of the variable group.
type_: Option<String>The type of the variable group.
variables: Option<Value>Implementations§
source§impl VariableGroup
impl VariableGroup
Trait Implementations§
source§impl Clone for VariableGroup
impl Clone for VariableGroup
source§fn clone(&self) -> VariableGroup
fn clone(&self) -> VariableGroup
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 VariableGroup
impl Debug for VariableGroup
source§impl Default for VariableGroup
impl Default for VariableGroup
source§fn default() -> VariableGroup
fn default() -> VariableGroup
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VariableGroup
impl<'de> Deserialize<'de> for VariableGroup
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<VariableGroup> for VariableGroup
impl PartialEq<VariableGroup> for VariableGroup
source§fn eq(&self, other: &VariableGroup) -> bool
fn eq(&self, other: &VariableGroup) -> bool
This method tests for
self and other values to be equal, and is used
by ==.