pub enum VmMemoryHandlerRequest {
AddControlTubes(Vec<VmMemoryTube>),
Exit,
}Expand description
Commands to control the VM Memory handler thread.
Variants§
AddControlTubes(Vec<VmMemoryTube>)
No response is sent for this command.
Exit
No response is sent for this command.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VmMemoryHandlerRequest
impl<'de> Deserialize<'de> for VmMemoryHandlerRequest
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
Auto Trait Implementations§
impl Freeze for VmMemoryHandlerRequest
impl RefUnwindSafe for VmMemoryHandlerRequest
impl Send for VmMemoryHandlerRequest
impl Sync for VmMemoryHandlerRequest
impl Unpin for VmMemoryHandlerRequest
impl UnwindSafe for VmMemoryHandlerRequest
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