1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Ceres executor memory use crate::Result; /// Ceres wasm executor memory pub trait Memory: Sized + Clone { /// Construct a new linear memory instance fn new(initial: u32, maximum: Option<u32>) -> Result<Self>; /// Read a memory area at the address `ptr` with the size of the provided slice `buf`. fn get(&self, ptr: u32, buf: &mut [u8]) -> Result<()>; /// Write a memory area at the address `ptr` with contents of the provided slice `buf`. fn set(&self, ptr: u32, value: &[u8]) -> Result<()>; }