pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;Expand description
A boxed future that is Send.
This type alias is used for the return type of WebhookHandler::handle
to allow trait objects (dyn compatibility).
Aliased Typeยง
pub struct BoxFuture<'a, T> { /* private fields */ }