pub struct ProjectInstancesConfigurationsConfigurationElementType {
pub name: String,
pub global_id: Option<String>,
pub resource: Vec<ProjectInstancesConfigurationsConfigurationResourceElementType>,
pub global_vars: Vec<VarListType>,
pub access_vars: Option<VarListAccessType>,
pub config_vars: Option<VarListConfigType>,
pub add_data: Option<AddDataType>,
pub documentation: Option<FormattedTextType>,
}Expand description
Represents a group of resources and global variables
Fields§
§name: String§global_id: Option<String>§resource: Vec<ProjectInstancesConfigurationsConfigurationResourceElementType>§global_vars: Vec<VarListType>§access_vars: Option<VarListAccessType>§config_vars: Option<VarListConfigType>§add_data: Option<AddDataType>§documentation: Option<FormattedTextType>Additional userspecific information to the element
Trait Implementations§
Source§impl<'de> Deserializer<'de, ProjectInstancesConfigurationsConfigurationElementType> for Box<ProjectInstancesConfigurationsConfigurationElementTypeDeserializer>
impl<'de> Deserializer<'de, ProjectInstancesConfigurationsConfigurationElementType> for Box<ProjectInstancesConfigurationsConfigurationElementTypeDeserializer>
Source§fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ProjectInstancesConfigurationsConfigurationElementType>where
R: DeserializeReader,
fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ProjectInstancesConfigurationsConfigurationElementType>where
R: DeserializeReader,
Source§fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ProjectInstancesConfigurationsConfigurationElementType>where
R: DeserializeReader,
fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ProjectInstancesConfigurationsConfigurationElementType>where
R: DeserializeReader,
Source§fn finish<R>(
self,
reader: &R,
) -> Result<ProjectInstancesConfigurationsConfigurationElementType, Error>where
R: DeserializeReader,
fn finish<R>(
self,
reader: &R,
) -> Result<ProjectInstancesConfigurationsConfigurationElementType, Error>where
R: DeserializeReader,
Force the deserializer to finish. Read more
Source§impl WithDeserializer for ProjectInstancesConfigurationsConfigurationElementType
impl WithDeserializer for ProjectInstancesConfigurationsConfigurationElementType
Source§type Deserializer = Box<ProjectInstancesConfigurationsConfigurationElementTypeDeserializer>
type Deserializer = Box<ProjectInstancesConfigurationsConfigurationElementTypeDeserializer>
The deserializer to use for this type.
Source§impl WithSerializer for ProjectInstancesConfigurationsConfigurationElementType
impl WithSerializer for ProjectInstancesConfigurationsConfigurationElementType
Source§type Serializer<'x> = ProjectInstancesConfigurationsConfigurationElementTypeSerializer<'x>
type Serializer<'x> = ProjectInstancesConfigurationsConfigurationElementTypeSerializer<'x>
The serializer to use for this type.
Source§fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<Self::Serializer<'ser>, Error>
fn serializer<'ser>( &'ser self, name: Option<&'ser str>, is_root: bool, ) -> Result<Self::Serializer<'ser>, Error>
Initializes a new serializer from the passed
value. Read moreAuto Trait Implementations§
impl Freeze for ProjectInstancesConfigurationsConfigurationElementType
impl RefUnwindSafe for ProjectInstancesConfigurationsConfigurationElementType
impl Send for ProjectInstancesConfigurationsConfigurationElementType
impl Sync for ProjectInstancesConfigurationsConfigurationElementType
impl Unpin for ProjectInstancesConfigurationsConfigurationElementType
impl UnwindSafe for ProjectInstancesConfigurationsConfigurationElementType
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