FutureResult<T, E> typedef

FutureResult<T, E> = Future<Result<T, E>>

Represents a Future that completes with a Result of the given types T, E.

This is simply a convenience typedef to save a couple characters.

Implementation

typedef FutureResult<T, E> = Future<Result<T, E>>;