[][src]Type Definition roa_core::ResultFuture

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

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