FutureOption<T> typedef

FutureOption<T> = Future<Option<T>>

Represents a Future that completes with an Option of the given type T.

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

Implementation

typedef FutureOption<T> = Future<Option<T>>;