pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;Expand description
Type alias for a pinned, thread-safe future. Necessary for handling async route logic without an external runtime.
Aliased Typeยง
pub struct BoxFuture<'a, T> { /* private fields */ }