mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user