pub fn map_async<'a, Projection, Output, NewType, Args, Descr>(
proj: Projection,
) -> Handler<'a, Output, Descr>where
Projection: Injectable<NewType, Args> + Send + Sync + 'a,
Output: 'a,
Descr: HandlerDescription,
NewType: Send + Sync + 'static,Expand description
The asynchronous version of map.