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
InvalidGuestAddress(GuestAddress)
Failure in finding a guest address in any memory regions mapped by this guest.
Tuple Fields of InvalidGuestAddress
0: GuestAddress
IOError(Error)
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.