[][src]Function wasm_thread::spawn

pub fn spawn<F, T>(f: F) -> JoinHandle<T> where
    F: FnOnce() -> T,
    F: Send + 'static,
    T: Send + 'static, 

Spawns a new thread, returning a JoinHandle for it.