spawn in async_std::task - Rust (original) (raw)

logo

async_std1.13.1

Sections

In async_std::task

async_std::task

Function spawn

Source

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

where
    F: Future<Output = T> + Send + 'static,
    T: Send + 'static,

Expand description

Spawns a task.

This function is similar to std::thread::spawn, except it spawns an asynchronous task.

§Examples

use async_std::task;

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

assert_eq!(handle.await, 3);