#[non_exhaustive]pub struct InstanceSettingsMetadata {
pub items: HashMap<String, String>,
pub kind: Option<String>,
/* private fields */
}Available on crate feature
instance-settings only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.items: HashMap<String, String>A metadata key/value items map. The total size of all keys and values must be less than 512KB.
kind: Option<String>Output only. [Output Only] Type of the resource. Always compute#metadata for metadata.
Implementations§
Trait Implementations§
Source§impl Clone for InstanceSettingsMetadata
impl Clone for InstanceSettingsMetadata
Source§fn clone(&self) -> InstanceSettingsMetadata
fn clone(&self) -> InstanceSettingsMetadata
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 InstanceSettingsMetadata
impl Debug for InstanceSettingsMetadata
Source§impl Default for InstanceSettingsMetadata
impl Default for InstanceSettingsMetadata
Source§fn default() -> InstanceSettingsMetadata
fn default() -> InstanceSettingsMetadata
Returns the “default value” for a type. Read more
Source§impl Message for InstanceSettingsMetadata
impl Message for InstanceSettingsMetadata
Source§impl PartialEq for InstanceSettingsMetadata
impl PartialEq for InstanceSettingsMetadata
impl StructuralPartialEq for InstanceSettingsMetadata
Auto Trait Implementations§
impl Freeze for InstanceSettingsMetadata
impl RefUnwindSafe for InstanceSettingsMetadata
impl Send for InstanceSettingsMetadata
impl Sync for InstanceSettingsMetadata
impl Unpin for InstanceSettingsMetadata
impl UnwindSafe for InstanceSettingsMetadata
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