[][src]Function async_std::task::spawn_local

pub fn spawn_local<F, T>(future: F) -> JoinHandle<T>

Notable traits for JoinHandle<T>

impl<T> Future for JoinHandle<T> type Output = T;
where
    F: Future<Output = T> + 'static,
    T: 'static, 
This is supported on unstable only.

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);