BoxFuture

Type Alias BoxFuture 

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

dyn-compatible Future 타입 별칭

Aliased Type§

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