pub enum VirtualMachineCryptoStateEnum {
Unlocked,
Locked,
Other_(String),
}Expand description
The crypto state of a encrypted virtual machine.
Possible values:
unlocked: The virtual machine is in unlocked state.locked: The virtual machine is in locked state for the configuration key missing on the ESX host where the VM is registered.
Variants§
Trait Implementations§
Source§impl Clone for VirtualMachineCryptoStateEnum
impl Clone for VirtualMachineCryptoStateEnum
Source§fn clone(&self) -> VirtualMachineCryptoStateEnum
fn clone(&self) -> VirtualMachineCryptoStateEnum
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<'de> Deserialize<'de> for VirtualMachineCryptoStateEnum
impl<'de> Deserialize<'de> for VirtualMachineCryptoStateEnum
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<'_derivative_strum> From<&'_derivative_strum VirtualMachineCryptoStateEnum> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum VirtualMachineCryptoStateEnum> for &'static str
Source§fn from(x: &'_derivative_strum VirtualMachineCryptoStateEnum) -> &'static str
fn from(x: &'_derivative_strum VirtualMachineCryptoStateEnum) -> &'static str
Converts to this type from the input type.
Source§impl From<VirtualMachineCryptoStateEnum> for &'static str
impl From<VirtualMachineCryptoStateEnum> for &'static str
Source§fn from(x: VirtualMachineCryptoStateEnum) -> &'static str
fn from(x: VirtualMachineCryptoStateEnum) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VirtualMachineCryptoStateEnum
impl RefUnwindSafe for VirtualMachineCryptoStateEnum
impl Send for VirtualMachineCryptoStateEnum
impl Sync for VirtualMachineCryptoStateEnum
impl Unpin for VirtualMachineCryptoStateEnum
impl UnwindSafe for VirtualMachineCryptoStateEnum
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