pub trait Run<T: Task> { // Required method fn run(&self, task: T); }
Runs the task on the underlying executor.