LocalBoxCompletionFuture

Type Alias LocalBoxCompletionFuture 

Source
pub type LocalBoxCompletionFuture<'a, T> = Pin<Box<dyn CompletionFuture<Output = T> + 'a>>;
Available on crate feature alloc only.
Expand description

A type-erased completion future that cannot be send across threads.

Aliased Typeยง

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