pub trait MemoryT {
// Required methods
fn read(&mut self, offset: u32, dest: &mut [u8]) -> Result<(), MemoryError>;
fn write(&mut self, offset: u32, src: &[u8]) -> Result<(), MemoryError>;
}Expand description
Allows to access the memory of a VirtT.