pub trait Spawnable {
    type Spawner;

    fn spawner() -> Self::Spawner;
}
Expand description

A Worker that can be spawned by a spawner.

Required Associated Types

Spawner Type.

Required Methods

Creates a spawner.

Implementors