Add back lower_bound as memeber

This commit is contained in:
Xavientois 2021-01-15 19:29:49 -05:00
parent eea99f491b
commit 7e56637c74

View file

@ -2481,6 +2481,8 @@ impl<R: Read + SizeHint> Iterator for Bytes<R> {
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
trait SizeHint {
fn lower_bound(&self) -> usize {
fn upper_bound(&self) -> Option<usize> {
None
}