pub trait Exec: Send { // Required method fn exec(self: Box<Self>, ext: &mut dyn Ext) -> ExecTrapResult<GasLeft>; }
Virtual Machine interface
This function should be used to execute transaction. It returns either an error, a known amount of gas left, or parameters to be used to compute the final gas left.