Skip to main content

BoxFuture

Type Alias BoxFuture 

Source
pub type BoxFuture<TResponse, TError> = Pin<Box<dyn Future<Output = Result<TResponse, TError>> + Send + 'static>>;
Expand description

Boxed future returned by router handlers.

Aliased Typeยง

pub struct BoxFuture<TResponse, TError> { /* private fields */ }