pub enum ActualVmState {
Provisioning,
Created,
Starting,
Running,
Stopping,
Stopped,
Destroying,
Destroyed,
Failed,
}Variants§
Trait Implementations§
Source§impl Clone for ActualVmState
impl Clone for ActualVmState
Source§fn clone(&self) -> ActualVmState
fn clone(&self) -> ActualVmState
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 ActualVmState
impl Debug for ActualVmState
Source§impl<'de> Deserialize<'de> for ActualVmState
impl<'de> Deserialize<'de> for ActualVmState
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 Hash for ActualVmState
impl Hash for ActualVmState
Source§impl PartialEq for ActualVmState
impl PartialEq for ActualVmState
Source§impl Serialize for ActualVmState
impl Serialize for ActualVmState
impl Copy for ActualVmState
impl Eq for ActualVmState
impl StructuralPartialEq for ActualVmState
Auto Trait Implementations§
impl Freeze for ActualVmState
impl RefUnwindSafe for ActualVmState
impl Send for ActualVmState
impl Sync for ActualVmState
impl Unpin for ActualVmState
impl UnsafeUnpin for ActualVmState
impl UnwindSafe for ActualVmState
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