pub trait Context: Send {
    // Required method
    fn exit(&self) -> Mutations;
}
Expand description

Storage context, for memorizing implementations

Required Methods§

source

fn exit(&self) -> Mutations

Exit the context, returning values that were modified

Implementors§