-
-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Description
pub trait AsyncFnMut<Args>: AsyncFnOnce<Args>
where
Args: Tuple,
{
type CallRefFuture<'a>: Future<Output = Self::Output>
where Self: 'a;
// Required method
extern "rust-call" fn async_call_mut(
&mut self,
args: Args,
) -> Self::CallRefFuture<'_>;
}AsyncFnMut is the async version of FnMut. With tuple_traits and async_fn_traits, maybe we can retry a function with args.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels