pub type BoxAsyncOnceMut<'a, A, T = ()> = Box<dyn FnOnce(&mut A) -> BoxFuture<'_, T> + Send + 'a>;Expand description
Type alias for a boxed async function that mutates its argument and is Send.
Aliased Typeยง
pub struct BoxAsyncOnceMut<'a, A, T = ()>(/* private fields */);