pub type HandlerFn = Arc<dyn for<'a> Fn(&'a mut dyn IHttpContext) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'a>> + Send + Sync>;Expand description
Boxed final handler function type.
Aliased Typeยง
pub struct HandlerFn { /* private fields */ }