pub trait Memory {
// Required methods
fn read_once(&self, addr: CellAddr) -> Option<StateCell>;
fn immutable(&self, addr: CellAddr) -> Option<StateValue>;
}pub trait Memory {
// Required methods
fn read_once(&self, addr: CellAddr) -> Option<StateCell>;
fn immutable(&self, addr: CellAddr) -> Option<StateValue>;
}