Function async_tungstenite::tokio::client_async_with_config [−][src]
pub async fn client_async_with_config<'a, R, S>(
request: R,
stream: S,
config: Option<WebSocketConfig>
) -> Result<(WebSocketStream<TokioAdapter<S>>, Response), Error> where
R: IntoClientRequest + Unpin,
S: AsyncRead + AsyncWrite + Unpin,
Expand description
The same as client_async()
but the one can specify a websocket configuration.
Please refer to client_async()
for more details.