Type Definition egg_mode::FutureResponse [] [src]

type FutureResponse<'a, T> = TwitterFuture<'a, Response<T>>;

Type alias for futures that resolve to responses from Twitter.

See the page for TwitterFuture for details on how to use this type. FutureResponse is a convenience alias that is only there so i don't have to write Response<T> all the time.