pub fn inspect_async_with_description<'a, F, Input, Output, Args, Descr>(
    description: Descr,
    f: F
) -> Handler<'a, Input, Output, Descr> where
    F: Injectable<Input, (), Args> + Send + Sync + 'a,
    Input: Send + 'a,
    Output: 'a, 
Expand description

inspect_async with a custom description.