pub struct RuntimeGuestOsFeature {
pub type_: Option<String>,
}Expand description
Optional. A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options. Guest OS features for boot disk.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_: Option<String>The ID of a supported feature. Read Enabling guest operating system features to see a list of available options. Valid values: * FEATURE_TYPE_UNSPECIFIED * MULTI_IP_SUBNET * SECURE_BOOT * UEFI_COMPATIBLE * VIRTIO_SCSI_MULTIQUEUE * WINDOWS
Trait Implementations§
Source§impl Clone for RuntimeGuestOsFeature
impl Clone for RuntimeGuestOsFeature
Source§fn clone(&self) -> RuntimeGuestOsFeature
fn clone(&self) -> RuntimeGuestOsFeature
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 RuntimeGuestOsFeature
impl Debug for RuntimeGuestOsFeature
Source§impl Default for RuntimeGuestOsFeature
impl Default for RuntimeGuestOsFeature
Source§fn default() -> RuntimeGuestOsFeature
fn default() -> RuntimeGuestOsFeature
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeGuestOsFeature
impl<'de> Deserialize<'de> for RuntimeGuestOsFeature
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 Serialize for RuntimeGuestOsFeature
impl Serialize for RuntimeGuestOsFeature
impl Part for RuntimeGuestOsFeature
Auto Trait Implementations§
impl Freeze for RuntimeGuestOsFeature
impl RefUnwindSafe for RuntimeGuestOsFeature
impl Send for RuntimeGuestOsFeature
impl Sync for RuntimeGuestOsFeature
impl Unpin for RuntimeGuestOsFeature
impl UnwindSafe for RuntimeGuestOsFeature
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