Skip to main content

BoxAsyncOnceMut

Type Alias BoxAsyncOnceMut 

Source
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 */);