aboutsummaryrefslogtreecommitdiff
path: root/src/format/binary.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-07-23 22:57:43 +0200
committerTill Hoeppner2015-07-23 22:57:43 +0200
commit96013802eb8cb8da86b5f6398e88375203cd5e28 (patch)
treec6e7b69a84e52a59bfec2a14d49058dc185964ae /src/format/binary.rs
parenta4ed13e46fcef39d53126b3dc11d4f3705237b60 (diff)
downloadilc-96013802eb8cb8da86b5f6398e88375203cd5e28.tar.gz
ilc-96013802eb8cb8da86b5f6398e88375203cd5e28.tar.xz
ilc-96013802eb8cb8da86b5f6398e88375203cd5e28.zip
Support dynamic selection of decoders/encoders
Diffstat (limited to 'src/format/binary.rs')
-rw-r--r--src/format/binary.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/format/binary.rs b/src/format/binary.rs
index 4c2e151..a1ca12d 100644
--- a/src/format/binary.rs
+++ b/src/format/binary.rs
@@ -44,7 +44,8 @@ impl<'a, W> Encode<'a, W> for Binary where W: Write {
}
}
-impl<'a, R: 'a> Decode<'a, R, Iter<'a, R>> for Binary where R: BufRead {
+impl<'a, R: 'a> Decode<'a, R> for Binary where R: BufRead {
+ type Output = Iter<'a, R>;
fn decode(&'a mut self, _context: &'a Context, input: R) -> Iter<R> {
Iter { _phantom: PhantomData, input: input }
}