#[non_exhaustive]pub enum TargetVmDefaults {
ComputeEngineTargetDefaults(Box<ComputeEngineTargetDefaults>),
ComputeEngineDisksTargetDefaults(Box<ComputeEngineDisksTargetDefaults>),
}Expand description
The default configuration of the target VM that will be created in Google Cloud as a result of the migration.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ComputeEngineTargetDefaults(Box<ComputeEngineTargetDefaults>)
Details of the target VM in Compute Engine.
ComputeEngineDisksTargetDefaults(Box<ComputeEngineDisksTargetDefaults>)
Details of the target Persistent Disks in Compute Engine.
Trait Implementations§
Source§impl Clone for TargetVmDefaults
impl Clone for TargetVmDefaults
Source§fn clone(&self) -> TargetVmDefaults
fn clone(&self) -> TargetVmDefaults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetVmDefaults
impl Debug for TargetVmDefaults
Source§impl PartialEq for TargetVmDefaults
impl PartialEq for TargetVmDefaults
Source§fn eq(&self, other: &TargetVmDefaults) -> bool
fn eq(&self, other: &TargetVmDefaults) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TargetVmDefaults
Auto Trait Implementations§
impl Freeze for TargetVmDefaults
impl RefUnwindSafe for TargetVmDefaults
impl Send for TargetVmDefaults
impl Sync for TargetVmDefaults
impl Unpin for TargetVmDefaults
impl UnsafeUnpin for TargetVmDefaults
impl UnwindSafe for TargetVmDefaults
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