[][src]Module mobc::executor

A value that executes futures.

Traits

Executor

A value that executes futures. see tokio::Executor

Type Definitions

JoinHandle

A handle that awaits the result of a task. Dropping a JoinHandle will detach the task, meaning that there is no longer a handle to the task and no way to join on it. Created when a task is spawned.