pub trait Executor<T: Transaction> {
    // Required method
    fn execute(self, transaction: &RefCell<T>) -> BoxedExecutor;
}

Required Methods§

source

fn execute(self, transaction: &RefCell<T>) -> BoxedExecutor

Implementors§