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

inspect with a custom description.