tokio: remove prelude (#3299)

Closes: #3257
This commit is contained in:
Alice Ryhl
2020-12-19 11:42:24 -08:00
committed by GitHub
parent e41e6cddbb
commit 78f2340d25
26 changed files with 46 additions and 95 deletions
+1 -1
View File
@@ -2,8 +2,8 @@
#![cfg(feature = "full")]
#![cfg(unix)]
use tokio::io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt};
use tokio::net::UnixStream;
use tokio::prelude::*;
/// Checks that `UnixStream` can be split into a read half and a write half using
/// `UnixStream::split` and `UnixStream::split_mut`.