pub trait IntoInfallibleTask<'a, Args, Ok> {
type Task: TryTask<'a, Ok = Ok, Err = Infallible> + 'a;
// Required method
fn into_task(self) -> Self::Task;
}Expand description
Conversion to a Infallible TryTask.
Required Associated Types§
Sourcetype Task: TryTask<'a, Ok = Ok, Err = Infallible> + 'a
type Task: TryTask<'a, Ok = Ok, Err = Infallible> + 'a
The TryTask type.