Enum dbs_upcall::DevMgrResponse
source · pub enum DevMgrResponse {
AddMmioDev(DevMgrResponseInfo<()>),
CpuDev(DevMgrResponseInfo<CpuDevResponse>),
Other(DevMgrResponseInfo<()>),
}
Expand description
Device manager’s response representation in client side.
Variants§
AddMmioDev(DevMgrResponseInfo<()>)
Add mmio device’s response (no response body)
CpuDev(DevMgrResponseInfo<CpuDevResponse>)
Add / Del cpu device’s response
Other(DevMgrResponseInfo<()>)
Other response
Trait Implementations§
source§impl Debug for DevMgrResponse
impl Debug for DevMgrResponse
source§impl PartialEq<DevMgrResponse> for DevMgrResponse
impl PartialEq<DevMgrResponse> for DevMgrResponse
source§fn eq(&self, other: &DevMgrResponse) -> bool
fn eq(&self, other: &DevMgrResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.