async_spawn_local

Function async_spawn_local 

Source
pub fn async_spawn_local<F, T>(future: F) -> JoinHandle<T>
where F: Future<Output = T> + 'static, T: 'static,
Expand description

Spawns a task onto the thread-local executor.

ยงExamples

use async_std::task;

let handle = task::spawn_local(async {
    1 + 2
});

assert_eq!(handle.await, 3);