Enum dbs_upcall::DevMgrRequest
source · pub enum DevMgrRequest {
AddMmioDev(MmioDevRequest),
DelMmioDev(MmioDevRequest),
AddVcpu(CpuDevRequest),
DelVcpu(CpuDevRequest),
}
Expand description
Device manager’s request representation in client side.
Variants§
AddMmioDev(MmioDevRequest)
Add a MMIO virtio device
DelMmioDev(MmioDevRequest)
Del a MMIO device device
AddVcpu(CpuDevRequest)
Add a VCPU
DelVcpu(CpuDevRequest)
Del a VCPU
Implementations§
Trait Implementations§
source§impl Clone for DevMgrRequest
impl Clone for DevMgrRequest
source§fn clone(&self) -> DevMgrRequest
fn clone(&self) -> DevMgrRequest
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 moresource§impl Debug for DevMgrRequest
impl Debug for DevMgrRequest
source§impl PartialEq<DevMgrRequest> for DevMgrRequest
impl PartialEq<DevMgrRequest> for DevMgrRequest
source§fn eq(&self, other: &DevMgrRequest) -> bool
fn eq(&self, other: &DevMgrRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.