Trait Executor

Source
pub trait Executor {
    // Provided method
    fn execute_mut<F>(&mut self, _job: F)
       where F: FnOnce() + Send + 'static { ... }
}

Provided Methods§

Source

fn execute_mut<F>(&mut self, _job: F)
where F: FnOnce() + Send + 'static,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§