1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00

link to websocket example

This commit is contained in:
Nikolay Kim 2018-01-30 15:26:58 -08:00
parent e99a5e8144
commit b698e3546b

View file

@ -92,7 +92,11 @@ impl From<HttpResponseParserError> for WsClientError {
}
}
/// Websockt client
/// WebSocket client
///
/// Example of WebSocket client usage is available in
/// [websocket example](
/// https://github.com/actix/actix-web/blob/master/examples/websocket/src/client.rs#L24)
pub struct WsClient {
request: ClientRequestBuilder,
err: Option<WsClientError>,