1 2pub trait Executor { 3 fn execute_mut<F>(&mut self, _job : F) 4 where F : FnOnce() + Send + 'static { 5 } 6}