Rollup merge of #138490 - tbu-:pr_arc_file_pos, r=Noratrieb
Forward `stream_position` in `Arc<File>` as well It was missed in #137165.
This commit is contained in:
commit
07c503c3e4
1 changed files with 3 additions and 0 deletions
|
@ -1343,6 +1343,9 @@ impl Seek for Arc<File> {
|
||||||
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
|
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
|
||||||
(&**self).seek(pos)
|
(&**self).seek(pos)
|
||||||
}
|
}
|
||||||
|
fn stream_position(&mut self) -> io::Result<u64> {
|
||||||
|
(&**self).stream_position()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl OpenOptions {
|
impl OpenOptions {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue