Type Definition dptree::Cont

source · []
pub type Cont<'a, Input, Output> = Box<dyn FnOnce(Input) -> HandlerResult<'a, Input, Output> + Send + Sync + 'a>;
Expand description

A continuation representing the rest of a handler chain.