pub fn around<B, BF, A, AF>( name: impl Into<String>, before_fn: B, after_fn: A, ) -> MwEntrywhere B: Fn(Request) -> BF + Send + Sync + 'static, BF: Future<Output = Request> + Send + 'static, A: Fn(Response) -> AF + Send + Sync + 'static, AF: Future<Output = Response> + Send + 'static,
before then chain then after under one explain name.
before
after