mirror of
https://github.com/async-rs/async-std.git
synced 2025-03-30 04:56:41 +00:00
cargo fmt
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
4a2194f37c
commit
e1137345d4
7 changed files with 13 additions and 13 deletions
|
@ -1,14 +1,14 @@
|
|||
mod read;
|
||||
mod read_vectored;
|
||||
mod read_to_end;
|
||||
mod read_exact;
|
||||
mod read_to_end;
|
||||
mod read_to_string;
|
||||
mod read_vectored;
|
||||
|
||||
use read_to_string::ReadToStringFuture;
|
||||
use read_to_end::{ReadToEndFuture, read_to_end_internal};
|
||||
use read::ReadFuture;
|
||||
use read_vectored::ReadVectoredFuture;
|
||||
use read_exact::ReadExactFuture;
|
||||
use read_to_end::{read_to_end_internal, ReadToEndFuture};
|
||||
use read_to_string::ReadToStringFuture;
|
||||
use read_vectored::ReadVectoredFuture;
|
||||
|
||||
use std::io::IoSliceMut;
|
||||
use std::mem;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
use crate::future::Future;
|
||||
use crate::task::{Context, Poll};
|
||||
|
||||
use std::pin::Pin;
|
||||
use std::io;
|
||||
use std::pin::Pin;
|
||||
|
||||
use futures_io::AsyncRead;
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ use crate::future::Future;
|
|||
use crate::task::{Context, Poll};
|
||||
|
||||
use std::io;
|
||||
use std::pin::Pin;
|
||||
use std::mem;
|
||||
use std::pin::Pin;
|
||||
|
||||
use futures_io::AsyncRead;
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
use super::read_to_end_internal;
|
||||
use crate::future::Future;
|
||||
use crate::task::{Context, Poll};
|
||||
use super::read_to_end_internal;
|
||||
|
||||
use std::io;
|
||||
use std::mem;
|
||||
use std::pin::Pin;
|
||||
use std::str;
|
||||
use std::mem;
|
||||
|
||||
use futures_io::AsyncRead;
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
mod flush;
|
||||
mod write_all;
|
||||
mod write;
|
||||
mod write_all;
|
||||
mod write_vectored;
|
||||
|
||||
use flush::FlushFuture;
|
||||
use write_all::WriteAllFuture;
|
||||
use write::WriteFuture;
|
||||
use write_all::WriteAllFuture;
|
||||
use write_vectored::WriteVectoredFuture;
|
||||
|
||||
use std::io::IoSlice;
|
||||
|
|
|
@ -2,8 +2,8 @@ use crate::future::Future;
|
|||
use crate::task::{Context, Poll};
|
||||
|
||||
use std::io;
|
||||
use std::pin::Pin;
|
||||
use std::mem;
|
||||
use std::pin::Pin;
|
||||
|
||||
use futures_io::AsyncWrite;
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ use crate::future::Future;
|
|||
use crate::task::{Context, Poll};
|
||||
|
||||
use std::io;
|
||||
use std::pin::Pin;
|
||||
use std::io::IoSlice;
|
||||
use std::pin::Pin;
|
||||
|
||||
use futures_io::AsyncWrite;
|
||||
|
||||
|
|
Loading…
Reference in a new issue