test_runners_lib::elf

Type Alias 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>.

Aliased Typeยง

struct PinnedFuture<T, E> {}