pub trait IntoTask {
type Task: Task;
// Required method
fn into_task(self) -> Self::Task;
}
Expand description
A trait for objects that can be converted into a Task
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