pub trait Runnable { // Required method fn run(self: Box<Self>); }
A routine which could be run.
Runs a routine with a context instance.