pub type BoxedNext = Arc<dyn Fn(Request) -> Pin<Box<dyn Future<Output = Response<Full<Bytes>>> + Send>> + Send + Sync>;
A boxed next function for middleware chains
pub struct BoxedNext { /* private fields */ }