pub type Resume<'a, Arg, T> = Box<dyn FnOnce(Arg) -> Pin<Box<dyn Future<Output = T> + 'a>> + 'a>;Expand description
Async function passed to Task::switch. Represents the paused continuation.
Aliased Typeยง
pub struct Resume<'a, Arg, T>(/* private fields */);