1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-01-20 05:58:08 +00:00

explicit impl traits for ws connect

This commit is contained in:
Nikolay Kim 2019-03-29 14:26:11 -07:00
parent 744d82431d
commit aebeb511cd

View file

@ -3,7 +3,7 @@ use std::io::Write;
use std::rc::Rc;
use std::{fmt, str};
use actix_codec::Framed;
use actix_codec::{AsyncRead, AsyncWrite, Framed};
use actix_http::{ws, Payload, RequestHead};
use bytes::{BufMut, BytesMut};
#[cfg(feature = "cookies")]
@ -13,7 +13,6 @@ use tokio_timer::Timeout;
pub use actix_http::ws::{CloseCode, CloseReason, Frame, Message};
use crate::connect::BoxedSocket;
use crate::error::{InvalidUrl, SendRequestError, WsClientError};
use crate::http::header::{
self, HeaderName, HeaderValue, IntoHeaderValue, AUTHORIZATION,
@ -214,7 +213,10 @@ impl WebsocketsRequest {
pub fn connect(
mut self,
) -> impl Future<
Item = (ClientResponse, Framed<BoxedSocket, ws::Codec>),
Item = (
ClientResponse,
Framed<impl AsyncRead + AsyncWrite, ws::Codec>,
),
Error = WsClientError,
> {
if let Some(e) = self.err.take() {