Trait bp3d_threads::ThreadManager [−][src]
pub trait ThreadManager<'env> {
type Handle: Join;
fn spawn_thread<F: FnOnce() + Send + 'env>(&self, func: F) -> Self::Handle;
}Expand description
Trait to handle spawning generic threads.