pub type BoxMiddleware = Arc<dyn Fn(Request, Next) -> BoxFuture<'static, Response> + Send + Sync>;
Boxed middleware function type for dynamic middleware composition.
pub struct BoxMiddleware { /* private fields */ }