pub enum VcpuControl {
Debug(VcpuDebug),
RunState(VmRunMode),
MakeRT,
GetStates(Sender<VmRunMode>),
Snapshot(SnapshotWriter, Sender<Result<()>>),
Restore(VcpuRestoreRequest),
Throttle(u32),
}Expand description
Control the state of a particular VM CPU.
Variants§
Debug(VcpuDebug)
RunState(VmRunMode)
MakeRT
GetStates(Sender<VmRunMode>)
Snapshot(SnapshotWriter, Sender<Result<()>>)
Restore(VcpuRestoreRequest)
Throttle(u32)
Trait Implementations§
Source§impl Clone for VcpuControl
impl Clone for VcpuControl
Source§fn clone(&self) -> VcpuControl
fn clone(&self) -> VcpuControl
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for VcpuControl
impl RefUnwindSafe for VcpuControl
impl Send for VcpuControl
impl Sync for VcpuControl
impl Unpin for VcpuControl
impl UnwindSafe for VcpuControl
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