Type Definition websocket::client::async::Client [−][src]
type Client<S> = Framed<S, MessageCodec<OwnedMessage>>;
An asynchronous websocket client.
This is simply a Stream and Sink of OwnedMessages.
See the docs for Stream and Sink to learn more about how to use
these futures.