[][src]Function async_std::task::current

pub fn current() -> Task

Returns a handle to the current task.

Panics

This function will panic if not called within the context of a task created by block_on, spawn, or Builder::spawn.

Examples

use async_std::task;

println!("The name of this task is {:?}", task::current().name());