multiversx_sc_snippets::imports

Trait ScenarioTxRun

Source
pub trait ScenarioTxRun {
    type Returns;

    // Required method
    fn run(self) -> Self::Returns;
}
Expand description

Provides a run method for transactions and steps.

Required Associated Types§

Required Methods§

Source

fn run(self) -> Self::Returns

Implementors§

Source§

impl<'w, From, Payment, Gas, CodeValue, RH> ScenarioTxRun for Tx<ScenarioEnvExec<'w>, From, (), Payment, Gas, DeployCall<ScenarioEnvExec<'w>, Code<CodeValue>>, RH>

Source§

impl<'w, From, To, Payment, Gas, RH> ScenarioTxRun for Tx<ScenarioEnvExec<'w>, From, To, Payment, Gas, FunctionCall<VMHooksApi<StaticApiBackend>>, RH>

Source§

impl<'w, From, To, RH> ScenarioTxRun for Tx<ScenarioEnvExec<'w>, From, To, NotPayable, (), UpgradeCall<ScenarioEnvExec<'w>, Code<MxscPath<'w>>>, RH>

Source§

impl<'w, To, Payment, RH> ScenarioTxRun for Tx<ScenarioEnvQuery<'w>, (), To, Payment, (), FunctionCall<VMHooksApi<StaticApiBackend>>, RH>