Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
11e40ce
ExitStatus: print "exit status: {}" rather than "exit code: {}"
ijackson Mar 25, 2021
229d199
lazily calls some fns
klensy Mar 26, 2021
5b9bac2
format macro argument parsing fix
osa1 Mar 21, 2021
2afa4cc
Use DebugStruct::finish_non_exhaustive() in std.
m-ou-se Mar 27, 2021
d730153
Fix Debug implementation for RwLock{Read,Write}Guard.
m-ou-se Mar 27, 2021
7c01e6c
Derive Debug for io::Chain instead of manually implementing it.
m-ou-se Mar 27, 2021
5402abc
Improve Debug implementations of Mutex and RwLock.
m-ou-se Mar 27, 2021
5495ce0
Use detailed and shorter fs error explaination
pickfire Nov 25, 2020
d5bcdd3
Update rustup cross-compilation docs link
jonjensen Mar 27, 2021
0927580
Add regression tests for #56445
sjakobi Mar 27, 2021
1f33a6a
Rollup merge of #79399 - pickfire:patch-3, r=JohnTitor
JohnTitor Mar 27, 2021
973fb4b
Rollup merge of #83348 - osa1:issue83344, r=jackh726
JohnTitor Mar 27, 2021
3f41fdd
Rollup merge of #83462 - ijackson:exitstatus-message-wording, r=josht…
JohnTitor Mar 27, 2021
fa70398
Rollup merge of #83526 - klensy:lazy-too, r=petrochenkov
JohnTitor Mar 27, 2021
53cc806
Rollup merge of #83558 - m-ou-se:use-finish-non-exhaustive, r=jackh726
JohnTitor Mar 27, 2021
5dc29e1
Rollup merge of #83559 - m-ou-se:rwlock-guard-debug-fix, r=jackh726
JohnTitor Mar 27, 2021
8ad5f21
Rollup merge of #83560 - m-ou-se:io-chain-debug, r=sfackler
JohnTitor Mar 27, 2021
a800d7f
Rollup merge of #83561 - m-ou-se:lock-debug, r=jackh726
JohnTitor Mar 27, 2021
69acaf3
Rollup merge of #83567 - jonjensen:patch-1, r=GuillaumeGomez
JohnTitor Mar 27, 2021
1ad7c52
Rollup merge of #83569 - sjakobi:issue56445-regression-test, r=jackh726
JohnTitor Mar 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1677,9 +1677,9 @@ pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<()>
/// This function will return an error in the following situations, but is not
/// limited to just these cases:
///
/// * The `from` path is not a file.
/// * The `from` file does not exist.
/// * The current process does not have the permission rights to access
/// * `from` is neither a regular file nor a symlink to a regular file.
/// * `from` does not exist.
/// * The current process does not have the permission rights to read
/// `from` or write `to`.
///
/// # Examples
Expand Down