Skip to main content

BoxFuture

Type Alias BoxFuture 

Source
pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send + 'static>>;
Expand description

A boxed future for async operations.

Aliased Typeยง

pub struct BoxFuture<T> { /* private fields */ }