Skip to content
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 8 pull requests #76664

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2375dc0
unions: test move behavior of non-Copy fields
RalfJung Aug 15, 2020
fe21e4c
please tidy
RalfJung Aug 15, 2020
9c16cc2
make union-drop mem::forget test meaningful
RalfJung Aug 30, 2020
b1e481d
Simplify iter zip struct doc
pickfire Sep 12, 2020
8a261a2
Simplify SyncOnceCell's `take` and `drop`.
m-ou-se Sep 12, 2020
73e0a56
Make all methods of `Duration` const
CDirkx Sep 4, 2020
869021e
Add mailmap entry
CDirkx Sep 12, 2020
aa68aaa
Mark Once::new as #[inline].
m-ou-se Sep 12, 2020
4f0047e
Add a comment on is_trivially_sized about obviously !Sized types
nox Sep 12, 2020
75f0f7a
Fix a typo
nox Sep 12, 2020
caf6c92
Clean up some language trait items comparisons
nox Sep 12, 2020
2eeb8f1
Remove Windows details from Unix and VmWorks symlink() docstrings
nicholasbishop Sep 12, 2020
f75d29f
reduce size of test_from_iter_specialization_with_iterator_adapters t…
RalfJung Sep 13, 2020
bb41740
fix slice::check_range aliasing problems
RalfJung Sep 13, 2020
1500ced
Rollup merge of #75559 - RalfJung:union-test-move, r=joshtriplett
RalfJung Sep 13, 2020
b0d59f4
Rollup merge of #76335 - CDirkx:const-duration, r=ecstatic-morse
RalfJung Sep 13, 2020
945189a
Rollup merge of #76629 - pickfire:patch-4, r=jonas-schievink
RalfJung Sep 13, 2020
70fb791
Rollup merge of #76640 - fusion-engineering-forks:synconcecell-drop, …
RalfJung Sep 13, 2020
fc75c48
Rollup merge of #76641 - nox:pointee-random-stuff, r=eddyb
RalfJung Sep 13, 2020
68369ac
Rollup merge of #76646 - CDirkx:mailmap, r=Mark-Simulacrum
RalfJung Sep 13, 2020
004800c
Rollup merge of #76651 - nicholasbishop:bishop-remove-windows-note, r…
RalfJung Sep 13, 2020
e247c59
Rollup merge of #76662 - RalfJung:lib-test-miri, r=Mark-Simulacrum
RalfJung Sep 13, 2020
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
Prev Previous commit
Next Next commit
Remove Windows details from Unix and VmWorks symlink() docstrings
This note is not relevant to other operating systems.
  • Loading branch information
nicholasbishop committed Sep 12, 2020

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 2eeb8f18eb493a8ec3b830aabb3e7f1723953bc0
9 changes: 0 additions & 9 deletions library/std/src/sys/unix/ext/fs.rs
Original file line number Diff line number Diff line change
@@ -836,15 +836,6 @@ impl DirEntryExt for fs::DirEntry {
///
/// The `dst` path will be a symbolic link pointing to the `src` path.
///
/// # Note
///
/// On Windows, you must specify whether a symbolic link points to a file
/// or directory. Use `os::windows::fs::symlink_file` to create a
/// symbolic link to a file, or `os::windows::fs::symlink_dir` to create a
/// symbolic link to a directory. Additionally, the process must have
/// `SeCreateSymbolicLinkPrivilege` in order to be able to create a
/// symbolic link.
///
/// # Examples
///
/// ```no_run
9 changes: 0 additions & 9 deletions library/std/src/sys/vxworks/ext/fs.rs
Original file line number Diff line number Diff line change
@@ -774,15 +774,6 @@ impl DirEntryExt for fs::DirEntry {
///
/// The `dst` path will be a symbolic link pointing to the `src` path.
///
/// # Note
///
/// On Windows, you must specify whether a symbolic link points to a file
/// or directory. Use `os::windows::fs::symlink_file` to create a
/// symbolic link to a file, or `os::windows::fs::symlink_dir` to create a
/// symbolic link to a directory. Additionally, the process must have
/// `SeCreateSymbolicLinkPrivilege` in order to be able to create a
/// symbolic link.
///
/// # Examples
///
/// ```no_run