mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 14:14:21 +00:00
Add missing size_hint for Done source
This commit is contained in:
parent
758a39f2ba
commit
77031e7e08
1 changed files with 4 additions and 0 deletions
|
@ -57,6 +57,10 @@ where
|
|||
}
|
||||
next
|
||||
}
|
||||
|
||||
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||
self.input.size_hint()
|
||||
}
|
||||
}
|
||||
|
||||
impl<I> Source for Done<I>
|
||||
|
|
Loading…
Reference in a new issue