pub trait Start<T> { // Required method fn start(self) -> Task<T>; }
A trait for types that can start tasks.
Starts a task from this value.