pub struct VariableGroupParameters {
pub description: Option<String>,
pub name: Option<String>,
pub provider_data: Option<VariableGroupProviderData>,
pub type_: Option<String>,
pub variable_group_project_references: Vec<VariableGroupProjectReference>,
pub variables: Option<Value>,
}Fields§
§description: Option<String>Sets description of the variable group.
name: Option<String>Sets name of the variable group.
provider_data: Option<VariableGroupProviderData>Defines provider data of the variable group.
type_: Option<String>Sets type of the variable group.
variable_group_project_references: Vec<VariableGroupProjectReference>§variables: Option<Value>Sets variables contained in the variable group.
Implementations§
Trait Implementations§
Source§impl Clone for VariableGroupParameters
impl Clone for VariableGroupParameters
Source§fn clone(&self) -> VariableGroupParameters
fn clone(&self) -> VariableGroupParameters
Returns a duplicate 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 VariableGroupParameters
impl Debug for VariableGroupParameters
Source§impl Default for VariableGroupParameters
impl Default for VariableGroupParameters
Source§fn default() -> VariableGroupParameters
fn default() -> VariableGroupParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VariableGroupParameters
impl<'de> Deserialize<'de> for VariableGroupParameters
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 VariableGroupParameters
impl PartialEq for VariableGroupParameters
Source§impl Serialize for VariableGroupParameters
impl Serialize for VariableGroupParameters
impl StructuralPartialEq for VariableGroupParameters
Auto Trait Implementations§
impl Freeze for VariableGroupParameters
impl RefUnwindSafe for VariableGroupParameters
impl Send for VariableGroupParameters
impl Sync for VariableGroupParameters
impl Unpin for VariableGroupParameters
impl UnwindSafe for VariableGroupParameters
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more