summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/read.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/read.rs')
-rw-r--r--ipfs-api/src/read.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/ipfs-api/src/read.rs b/ipfs-api/src/read.rs
index 513a3ac..674d5fa 100644
--- a/ipfs-api/src/read.rs
+++ b/ipfs-api/src/read.rs
@@ -13,7 +13,11 @@ use hyper::Chunk;
use response::Error;
use serde::Deserialize;
use serde_json;
-use std::{cmp, io::{self, Read}, marker::PhantomData};
+use std::{
+ cmp,
+ io::{self, Read},
+ marker::PhantomData,
+};
use tokio_codec::Decoder;
use tokio_io::AsyncRead;
@@ -199,8 +203,4 @@ where
}
}
-impl<S> AsyncRead for StreamReader<S>
-where
- S: Stream<Item = Chunk, Error = Error>,
-{
-}
+impl<S> AsyncRead for StreamReader<S> where S: Stream<Item = Chunk, Error = Error> {}