Trait Scenario
bench::scenario
pub trait Scenario { const DESC: &'static str; const ABI: &'static str; fn new() -> Self; fn wasm(&self) -> Vec<Wasm>; fn actions(&mut self, contract: &str) -> Vec<Action>; }
const DESC: &'static str
const ABI: &'static str
fn new() -> Self
fn wasm(&self) -> Vec<Wasm>
fn actions(&mut self, contract: &str) -> Vec<Action>
impl Scenario for EosioTokenScenario