Trait multiversx_sc::types::TxEmptyResultHandler

source ·
pub trait TxEmptyResultHandler<Env>: TxResultHandler<Env>
where Env: TxEnv,
{ }
Expand description

Indicates that given result handler is empty, i.e. doesn’t cause any side effects and returns nothing.

Implemented for () and OriginalResultMarker.

Implementations on Foreign Types§

source§

impl<Env> TxEmptyResultHandler<Env> for ()
where Env: TxEnv,

Implementors§

source§

impl<Env, O> TxEmptyResultHandler<Env> for OriginalResultMarker<O>
where Env: TxEnv,