pub struct GoogleCloudResourcesettingsV1SettingMetadata {
pub data_type: Option<String>,
pub default_value: Option<GoogleCloudResourcesettingsV1Value>,
pub description: Option<String>,
pub display_name: Option<String>,
pub read_only: Option<bool>,
}Expand description
Metadata about a setting which is not editable by the end user.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_type: Option<String>The data type for this setting.
default_value: Option<GoogleCloudResourcesettingsV1Value>The value provided by Setting.effective_value if no setting value is explicitly set. Note: not all settings have a default value.
description: Option<String>A detailed description of what this setting does.
display_name: Option<String>The human readable name for this setting.
read_only: Option<bool>A flag indicating that values of this setting cannot be modified. See documentation for the specific setting for updates and reasons.
Trait Implementations§
Source§impl Clone for GoogleCloudResourcesettingsV1SettingMetadata
impl Clone for GoogleCloudResourcesettingsV1SettingMetadata
Source§fn clone(&self) -> GoogleCloudResourcesettingsV1SettingMetadata
fn clone(&self) -> GoogleCloudResourcesettingsV1SettingMetadata
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 Default for GoogleCloudResourcesettingsV1SettingMetadata
impl Default for GoogleCloudResourcesettingsV1SettingMetadata
Source§fn default() -> GoogleCloudResourcesettingsV1SettingMetadata
fn default() -> GoogleCloudResourcesettingsV1SettingMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudResourcesettingsV1SettingMetadata
impl<'de> Deserialize<'de> for GoogleCloudResourcesettingsV1SettingMetadata
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
impl Part for GoogleCloudResourcesettingsV1SettingMetadata
Auto Trait Implementations§
impl Freeze for GoogleCloudResourcesettingsV1SettingMetadata
impl RefUnwindSafe for GoogleCloudResourcesettingsV1SettingMetadata
impl Send for GoogleCloudResourcesettingsV1SettingMetadata
impl Sync for GoogleCloudResourcesettingsV1SettingMetadata
impl Unpin for GoogleCloudResourcesettingsV1SettingMetadata
impl UnwindSafe for GoogleCloudResourcesettingsV1SettingMetadata
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