Type Definition completion::future::LocalBoxCompletionFuture[][src]

type LocalBoxCompletionFuture<'a, T> = Pin<Box<dyn CompletionFuture<Output = T> + 'a>>;
This is supported on crate feature alloc only.

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