mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
explicit impl traits for ws connect
This commit is contained in:
parent
744d82431d
commit
aebeb511cd
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user