pub trait IntoTask { type Task: Task; // Required method fn into_task(self) -> Self::Task; }
A trait for objects that can be converted into a Task
Convert self into a Task