Enum vm_memory::guest_memory::Error [−][src]
pub enum Error { InvalidGuestAddress(GuestAddress), IOError(Error), PartialBuffer { expected: usize, completed: usize, }, InvalidBackendAddress, HostAddressNotAvailable, }
Expand description
Errors associated with handling guest memory accesses.
Variants
Failure in finding a guest address in any memory regions mapped by this guest.
Tuple Fields of InvalidGuestAddress
0: GuestAddress
Couldn’t read/write from the given source.
Tuple Fields of IOError
0: Error
Incomplete read or write.
Requested backend address is out of range.
Host virtual address not available.