Trait thread_isolated::IsolationRunner [] [src]

pub trait IsolationRunner: Sync + 'static {
    fn run_on_owning_thread(&self, f: Box<FnBox() + Send>);
}

A type that can run a given boxed closure on a particular thread.

Required Methods

fn run_on_owning_thread(&self, f: Box<FnBox() + Send>)

Implementors