Remove the recently added io::Seek methods implementations

This commit is contained in:
Kerollmops 2022-03-22 13:37:20 +01:00 committed by Josh Stone
parent fd3cf0b129
commit d8b843e441

View File

@ -915,14 +915,6 @@ where
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
either!(*self, ref mut inner => inner.seek(pos))
}
fn rewind(&mut self) -> io::Result<()> {
either!(*self, ref mut inner => inner.rewind())
}
fn stream_position(&mut self) -> io::Result<u64> {
either!(*self, ref mut inner => inner.stream_position())
}
}
#[cfg(any(test, feature = "use_std"))]