[][src]Type Definition roa_core::ResultFuture

type ResultFuture<'a, R = ()> = Pin<Box<dyn Future<Output = Result<R>> + 'a>>;

Type alias for Pin<Box<dyn 'a + Future<Output = Result<R>>>>.