pub type WebSocketFuture<I> = Box<dyn Future<Item = I, Error = WebSocketError> + Send>;
Expand description

The most common Future in this library, it is simply some result I or a WebSocketError. This is analogous to the WebSocketResult type.

Aliased Type§

struct WebSocketFuture<I>(/* private fields */);