Type Alias Cont

Source
pub type Cont<'a, Output> = Box<dyn FnOnce(DependencyMap) -> HandlerResult<'a, Output> + Send + Sync + 'a>;
Expand description

A continuation representing the rest of a handler chain.

Aliased Typeยง

pub struct Cont<'a, Output>(/* private fields */);