pub type GuestMemoryResult<T> = Result<T, Error>;
Result of guest memory operations.
pub enum GuestMemoryResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value