pub trait VmiRead: VmiDriver { // Required method fn read_page(&self, gfn: Gfn) -> Result<VmiMappedPage, VmiError>; }
Capability to read guest physical memory pages.
Reads a page of memory from the virtual machine.