You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A file.tell() is much nicer than file.seek(std::io::SeekFrom::Current(0)). Additionally, I think .tell() doesn't need the file to be mutably borrowed (but I'm not sure).
The text was updated successfully, but these errors were encountered:
Thanks for the report! Additions to the standard I/O traits, however, should go through the RFC process, so this issue should go into rust-lang/rust instead of this repo.
A
file.tell()
is much nicer thanfile.seek(std::io::SeekFrom::Current(0))
. Additionally, I think.tell()
doesn't need the file to be mutably borrowed (but I'm not sure).The text was updated successfully, but these errors were encountered: