Type Definition test_runners_lib::elf::PinnedFuture
source · pub type PinnedFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>;
Expand description
A pinned, boxed future whose output is Result<T, E>
.
pub type PinnedFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>;
A pinned, boxed future whose output is Result<T, E>
.