-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 9 pull requests #41551
Rollup of 9 pull requests #41551
Conversation
Also spell out that read and write operations should be retried on `ErrorKind::Interrupted` errors. Fixes rust-lang#38494.
With regards to the unstable book, the reference, and the processes involved. Also, fix up a link by pointing to the new tracking issue rather than the older one. Fixes rust-lang#41285
Adds rust-windbg.cmd script Adds rust-gdb/rust-lldb equivalent for windbg that loads the Rust .natvis files on start. This change modifies the bootstrap code to add rust-windbg to bin and the .natvis files to lib/rustlib/etc. Example usage from cmd or PowerShell: ``` rust-windbg -c "bu rs_f442289d74765418!rs::main;g" target\debug\rs.exe ```
Specify behavior of `write_all` for `ErrorKind::Interrupted` errors Also spell out that read and write operations should be retried on `ErrorKind::Interrupted` errors. Fixes rust-lang#38494.
Add internal accessor methods to io::{Chain, Take}. Resolves rust-lang#29067.
use the word 'length' in Vec::len's docs Fixes rust-lang#37866
Fix a copy-paste error in `Instant::sub_duration` Fixes rust-lang#41514.
Clarify the doc index With regards to the unstable book, the reference, and the processes involved. Also, fix up a link by pointing to the new tracking issue rather than the older one. Fixes rust-lang#41285 r? @frewsxcv
Clarify "side effect" in peek's docs Fixes rust-lang#33269 /cc @tshepang
Implement From<&mut [T]> for Vec Fixes rust-lang#41386.
Fix up vec guarnatee around capacity Fixes rust-lang#37746 r? @rust-lang/libs
@bors r+ p=10 |
📌 Commit 1fd8ba9 has been approved by |
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @BurntSushi (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
⌛ Testing commit 1fd8ba9 with merge 4512424... |
☀️ Test successful - status-appveyor, status-travis |
write_all
forErrorKind::Interrupted
errors #41442, Add internal accessor methods to io::{Chain, Take}. #41463, use the word 'length' in Vec::len's docs #41500, Fix a copy-paste error inInstant::sub_duration
#41518, Clarify the doc index #41527, Clarify "side effect" in peek's docs #41528, Implement From<&mut [T]> for Vec #41530, Fix up vec guarnatee around capacity #41535