Trait syncbox::Run [] [src]

pub trait Run {
    fn run<F>(&self, task: F) where F: FnOnce() + Send;
}

Required Methods

fn run<F>(&self, task: F) where F: FnOnce() + Send

Runs the task on the underlying executor.

Implementors