pub trait CallSpan {
    // Required method
    fn after_call(self, output: &ExecReturnValue);
}
Expand description

Defines a span of execution for a contract call.

Required Methods§

source

fn after_call(self, output: &ExecReturnValue)

Called just after the execution of a contract.

Arguments
  • output - The raw output of the call.

Implementations on Foreign Types§

source§

impl CallSpan for ()

Implementors§