#[repr(u8)]pub enum EventStoppedDetailType {
Shutdown = 0,
Destroyed = 1,
Crashed = 2,
Migrated = 3,
Saved = 4,
Failed = 5,
FromSnapshot = 6,
}
Variants§
Shutdown = 0
Normal shutdown
Destroyed = 1
Forced poweroff from host
Crashed = 2
Guest crashed
Migrated = 3
Migrated off to another host
Saved = 4
Saved to a state file
Failed = 5
Host emulator/mgmt failed
FromSnapshot = 6
Offline snapshot loaded
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventStoppedDetailType
impl RefUnwindSafe for EventStoppedDetailType
impl Send for EventStoppedDetailType
impl Sync for EventStoppedDetailType
impl Unpin for EventStoppedDetailType
impl UnwindSafe for EventStoppedDetailType
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