Trait Memory

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

Required Methods§

Implementors§