pub trait ExecuteDispatchable {
    // Required method
    fn execute_dispatchable(self) -> Result<(), DispatchError>;
}
Expand description

Starts the execution of the respective ink! message or constructor call.

Note

Implemented by the ink! smart contract message or constructor decoder.

Required Methods§

source

fn execute_dispatchable(self) -> Result<(), DispatchError>

Executes the ink! smart contract message or constructor.

Implementors§