File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
mod read;
2
- mod read_vectored;
3
- mod read_to_end;
4
2
mod read_exact;
3
+ mod read_to_end;
5
4
mod read_to_string;
5
+ mod read_vectored;
6
6
7
- use read_to_string:: ReadToStringFuture ;
8
- use read_to_end:: { ReadToEndFuture , read_to_end_internal} ;
9
7
use read:: ReadFuture ;
10
- use read_vectored:: ReadVectoredFuture ;
11
8
use read_exact:: ReadExactFuture ;
9
+ use read_to_end:: { read_to_end_internal, ReadToEndFuture } ;
10
+ use read_to_string:: ReadToStringFuture ;
11
+ use read_vectored:: ReadVectoredFuture ;
12
12
13
13
use std:: io:: IoSliceMut ;
14
14
use std:: mem;
Original file line number Diff line number Diff line change 1
1
use crate :: future:: Future ;
2
2
use crate :: task:: { Context , Poll } ;
3
3
4
- use std:: pin:: Pin ;
5
4
use std:: io;
5
+ use std:: pin:: Pin ;
6
6
7
7
use futures_io:: AsyncRead ;
8
8
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ use crate::future::Future;
2
2
use crate :: task:: { Context , Poll } ;
3
3
4
4
use std:: io;
5
- use std:: pin:: Pin ;
6
5
use std:: mem;
6
+ use std:: pin:: Pin ;
7
7
8
8
use futures_io:: AsyncRead ;
9
9
Original file line number Diff line number Diff line change
1
+ use super :: read_to_end_internal;
1
2
use crate :: future:: Future ;
2
3
use crate :: task:: { Context , Poll } ;
3
- use super :: read_to_end_internal;
4
4
5
5
use std:: io;
6
+ use std:: mem;
6
7
use std:: pin:: Pin ;
7
8
use std:: str;
8
- use std:: mem;
9
9
10
10
use futures_io:: AsyncRead ;
11
11
Original file line number Diff line number Diff line change 1
1
mod flush;
2
- mod write_all;
3
2
mod write;
3
+ mod write_all;
4
4
mod write_vectored;
5
5
6
6
use flush:: FlushFuture ;
7
- use write_all:: WriteAllFuture ;
8
7
use write:: WriteFuture ;
8
+ use write_all:: WriteAllFuture ;
9
9
use write_vectored:: WriteVectoredFuture ;
10
10
11
11
use std:: io:: IoSlice ;
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ use crate::future::Future;
2
2
use crate :: task:: { Context , Poll } ;
3
3
4
4
use std:: io;
5
- use std:: pin:: Pin ;
6
5
use std:: mem;
6
+ use std:: pin:: Pin ;
7
7
8
8
use futures_io:: AsyncWrite ;
9
9
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ use crate::future::Future;
2
2
use crate :: task:: { Context , Poll } ;
3
3
4
4
use std:: io;
5
- use std:: pin:: Pin ;
6
5
use std:: io:: IoSlice ;
6
+ use std:: pin:: Pin ;
7
7
8
8
use futures_io:: AsyncWrite ;
9
9
You can’t perform that action at this time.
0 commit comments