tokio_rayon

Function spawn

Source
pub fn spawn<F, R>(func: F) -> AsyncRayonHandle<R> 
where F: FnOnce() -> R + Send + 'static, R: Send + 'static,
Expand description

Asynchronous wrapper around Rayon’s spawn.

Runs a function on the global Rayon thread pool with LIFO priority, produciing a future that resolves with the function’s return value.

§Panics

If the task function panics, the panic will be propagated through the returned future. This will NOT trigger the Rayon thread pool’s panic handler.

If the returned handle is dropped, and the return value of func panics when dropped, that panic WILL trigger the thread pool’s panic handler.