Skip to content

Commit 3097872

Browse files
committed
rustfmt
1 parent 1a7776c commit 3097872

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/futures.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ pub enum AsyncTcpStream<S: AsyncRead + AsyncWrite + Send + Unpin + 'static> {
3434

3535
impl<S: AsyncRead + AsyncWrite + Send + Unpin + 'static> AsyncTcpStream<S> {
3636
/// Wrapper around `reactor_trait::TcpReactor::connect`
37-
pub async fn connect<
38-
R: Reactor<TcpStream = S> + Sync,
39-
A: AsyncToSocketAddrs + Send,
40-
>(
37+
pub async fn connect<R: Reactor<TcpStream = S> + Sync, A: AsyncToSocketAddrs + Send>(
4138
reactor: &R,
4239
addr: A,
4340
) -> io::Result<Self> {

0 commit comments

Comments
 (0)