aboutsummaryrefslogtreecommitdiff
path: root/src/format/weechat3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/weechat3.rs')
-rw-r--r--src/format/weechat3.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/format/weechat3.rs b/src/format/weechat3.rs
index 9e07e92..3ff781c 100644
--- a/src/format/weechat3.rs
+++ b/src/format/weechat3.rs
@@ -137,8 +137,9 @@ impl<'a, R: 'a> Iterator for Iter<'a, R> where R: BufRead {
}
}
-impl<'a, R: 'a> Decode<'a, R, Iter<'a, R>> for Weechat3 where R: BufRead {
- fn decode(&'a mut self, context: &'a Context, input: R) -> Iter<R> {
+impl<'a, I: 'a> Decode<'a, I> for Weechat3 where I: BufRead {
+ type Output = Iter<'a, I>;
+ fn decode(&'a mut self, context: &'a Context, input: I) -> Iter<'a, I> {
Iter {
context: context,
input: input,