Trait PciMmioMapper

Source
pub trait PciMmioMapper {
    // Required methods
    fn supports_readonly_mapping(&self) -> bool;
    fn add_mapping(
        &mut self,
        addr: GuestAddress,
        shmem: &SharedMemory,
    ) -> Result<u32>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T: Vm + ?Sized> PciMmioMapper for &T

Implementors§