Forward stream_position in Arc<File> as well

It was missed in #137165.
This commit is contained in:
Tobias Bucher 2025-03-14 12:19:04 +01:00
parent f7b4354283
commit bdaf23b4cd

View file

@ -1343,6 +1343,9 @@ impl Seek for Arc<File> {
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
(&**self).seek(pos)
}
fn stream_position(&mut self) -> io::Result<u64> {
(&**self).stream_position()
}
}
impl OpenOptions {