-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std::io::copy should take Read and Write traits by value #105643
Comments
FTR this is the error I'm getting if I modify the copy function on a local toolchain based off current master and try to build tar 0.3.1:
So the borrow checker improvements in 2018-ish haven't fixed the regression here. tar 0.3.4 is also affected, but latest 0.4.33 is not. I'm closing this as with current policies this can't be changed. @rustbot label T-libs-api |
For the libs team meeting, see #111063 with crater runs for the suggested change as well as my analysis of the results. |
The proposed change breaks reborrows. For example in the following code: the error is: because against the current let buf: &mut Vec<u8> = ...;
io::copy(..., buf)?; // IMPLICIT REBORROW equivalent to `&mut *buf`
// buf remains usable here whereas in the proposed new As far as I know, there is no inherent reason it has to be this way. If you have For now the crater breakages are beyond where I think we can push this change through. But if a future smarter borrow checker is able to do reborrows for an argument of type @rfcbot fcp close |
Team member @dtolnay has proposed to close this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
This was suggested by @alexcrichton way back in 2015:
but it wasn't done as it regressed 3 (root) crates in a crater run. Still, ideally if the API breakage policy is ever revisited, it would be better to take
Read
andWrite
by-value, as a type impl'ingRead
transmits this property to&mut
references of it.@rustbot label T-libs-api rust-2-breakage-wishlist
The text was updated successfully, but these errors were encountered: