Skip to main content

BoxMaybeAsyncOnceMut

Type Alias BoxMaybeAsyncOnceMut 

Source
pub type BoxMaybeAsyncOnceMut<'a, A, T = ()> = Box<dyn FnOnce(&mut A) -> Option<BoxFuture<'_, T>> + Send + 'a>;
Expand description

Type alias for a boxed function that optionally returns an async future.

Aliased Typeยง

pub struct BoxMaybeAsyncOnceMut<'a, A, T = ()>(/* private fields */);