BoxFuture

Type Alias BoxFuture 

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

A boxed future type used across live session modules.

Aliased Typeยง

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