pub trait Task {
    type Started;

    fn start(self) -> Self::Started;
}

Required Associated Types

Required Methods

Implementors