pub trait AsyncFnMut3<Arg0, Arg1, Arg2>: FnMut(Arg0, Arg1, Arg2) -> Self::OutputFuture {
type OutputFuture: Future<Output = <Self as AsyncFnMut3<Arg0, Arg1, Arg2>>::Output>;
type Output;
}
Expand description
A synonym for future-returning FnMut
-bounds with 3 arguments
The bound
F: AsyncFnMut3<Arg0, Arg1, Arg2, Output = R>,
is equivalent to something like
F: FnMut(Arg0, Arg1, Arg2) -> Fut,
Fut: Future<Output = R>,