Function tokio_rayon::spawn[][src]

pub fn spawn<F, R>(func: F) -> AsyncRayonHandle<R>

Notable traits for AsyncRayonHandle<T>

impl<T> Future for AsyncRayonHandle<T> type Output = T;
where
    F: FnOnce() -> R + Send + 'static,
    R: Send + 'static, 

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.