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