pub trait InteractorPrepareAsync {
    type Exec;

    // Required method
    fn prepare_async(self) -> Self::Exec;
}

Required Associated Types§

Required Methods§

source

fn prepare_async(self) -> Self::Exec

Implementors§

source§

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

source§

impl<'w, From, To, Gas, CodeValue, RH> InteractorPrepareAsync for Tx<InteractorEnvExec<'w>, From, To, NotPayable, Gas, UpgradeCall<InteractorEnvExec<'w>, Code<CodeValue>>, RH>

source§

impl<'w, From, To, Payment, Gas> InteractorPrepareAsync for Tx<InteractorEnvExec<'w>, From, To, Payment, Gas, (), ()>

source§

impl<'w, From, To, Payment, Gas, RH> InteractorPrepareAsync for Tx<InteractorEnvExec<'w>, From, To, Payment, Gas, FunctionCall<StaticApi>, RH>

source§

impl<'w, To, Payment, RH> InteractorPrepareAsync for Tx<InteractorEnvQuery<'w>, (), To, Payment, (), FunctionCall<StaticApi>, RH>