summaryrefslogtreecommitdiffstats
path: root/tokio-io/src/io/read_exact.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-io/src/io/read_exact.rs')
-rw-r--r--tokio-io/src/io/read_exact.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tokio-io/src/io/read_exact.rs b/tokio-io/src/io/read_exact.rs
index 3b98621a..43e8bc0a 100644
--- a/tokio-io/src/io/read_exact.rs
+++ b/tokio-io/src/io/read_exact.rs
@@ -1,10 +1,8 @@
+use crate::AsyncRead;
+use futures::{try_ready, Future, Poll};
use std::io;
use std::mem;
-use futures::{Future, Poll};
-
-use AsyncRead;
-
/// A future which can be used to easily read exactly enough bytes to fill
/// a buffer.
///