pub trait TxResultHandler<Env>where
Env: TxEnv,{
type OriginalResult;
}
Expand description
Marks a general result handler, to be used in the transaction unified syntax.
Rationale described here: https://twitter.com/andreimmarinica/status/1781371938750841288
Used for:
- async callbacks
- processing of results in sync calls, tests and interactors.