pub trait SystemExecution {
// Required method
fn execute(self) -> BlockResult<Rc<dyn Process>>;
}
Required Methods§
Sourcefn execute(self) -> BlockResult<Rc<dyn Process>>
fn execute(self) -> BlockResult<Rc<dyn Process>>
Executes the system, returning the system process.