[][src]Type Definition egg_mode::FutureResponse

type FutureResponse<T> = Pin<Box<dyn Future<Output = Result<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.