Skip to content

Commit ac3e680

Browse files
committedJun 5, 2021
Auto merge of rust-lang#86032 - GuillaumeGomez:rollup-y3ij27b, r=GuillaumeGomez
Rollup of 7 pull requests Successful merges: - rust-lang#83646 (Add a map method to Bound) - rust-lang#85501 (Fix `deny(invalid_doc_attributes)`) - rust-lang#85503 (rustdoc: add tooltips to some buttons) - rust-lang#85710 (Document `From` impls in path.rs) - rust-lang#85760 (Possible errors when accessing file metadata are platform specific) - rust-lang#85974 (td align attribute) - rust-lang#86014 (msp430 linker does not accept -znoexecstack. Set linker_is_gnu to fal…) Failed merges: - rust-lang#85972 (Rustdoc html fixes) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 9104c89 + 16504f6 commit ac3e680

File tree

13 files changed

+114
-27
lines changed

13 files changed

+114
-27
lines changed
 

‎compiler/rustc_lint_defs/src/builtin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2994,6 +2994,7 @@ declare_lint_pass! {
29942994
USELESS_DEPRECATED,
29952995
UNSUPPORTED_NAKED_FUNCTIONS,
29962996
MISSING_ABI,
2997+
INVALID_DOC_ATTRIBUTES,
29972998
SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
29982999
DISJOINT_CAPTURE_MIGRATION,
29993000
LEGACY_DERIVE_HELPERS,

‎compiler/rustc_target/src/spec/msp430_none_elf.rs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pub fn target() -> Target {
1717
// dependency on this specific gcc.
1818
asm_args: vec!["-mcpu=msp430".to_string()],
1919
linker: Some("msp430-elf-gcc".to_string()),
20+
linker_is_gnu: false,
2021

2122
// There are no atomic CAS instructions available in the MSP430
2223
// instruction set, and the LLVM backend doesn't currently support

‎library/core/src/ops/range.rs

+35-1
Original file line numberDiff line numberDiff line change
@@ -674,10 +674,10 @@ pub enum Bound<T> {
674674
Unbounded,
675675
}
676676

677-
#[unstable(feature = "bound_as_ref", issue = "80996")]
678677
impl<T> Bound<T> {
679678
/// Converts from `&Bound<T>` to `Bound<&T>`.
680679
#[inline]
680+
#[unstable(feature = "bound_as_ref", issue = "80996")]
681681
pub fn as_ref(&self) -> Bound<&T> {
682682
match *self {
683683
Included(ref x) => Included(x),
@@ -688,13 +688,47 @@ impl<T> Bound<T> {
688688

689689
/// Converts from `&mut Bound<T>` to `Bound<&T>`.
690690
#[inline]
691+
#[unstable(feature = "bound_as_ref", issue = "80996")]
691692
pub fn as_mut(&mut self) -> Bound<&mut T> {
692693
match *self {
693694
Included(ref mut x) => Included(x),
694695
Excluded(ref mut x) => Excluded(x),
695696
Unbounded => Unbounded,
696697
}
697698
}
699+
700+
/// Maps a `Bound<T>` to a `Bound<U>` by applying a function to the contained value (including
701+
/// both `Included` and `Excluded`), returning a `Bound` of the same kind.
702+
///
703+
/// # Examples
704+
///
705+
/// ```
706+
/// #![feature(bound_map)]
707+
/// use std::ops::Bound::*;
708+
///
709+
/// let bound_string = Included("Hello, World!");
710+
///
711+
/// assert_eq!(bound_string.map(|s| s.len()), Included(13));
712+
/// ```
713+
///
714+
/// ```
715+
/// #![feature(bound_map)]
716+
/// use std::ops::Bound;
717+
/// use Bound::*;
718+
///
719+
/// let unbounded_string: Bound<String> = Unbounded;
720+
///
721+
/// assert_eq!(unbounded_string.map(|s| s.len()), Unbounded);
722+
/// ```
723+
#[inline]
724+
#[unstable(feature = "bound_map", issue = "86026")]
725+
pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Bound<U> {
726+
match self {
727+
Unbounded => Unbounded,
728+
Included(x) => Included(f(x)),
729+
Excluded(x) => Excluded(f(x)),
730+
}
731+
}
698732
}
699733

700734
impl<T: Clone> Bound<&T> {

‎library/std/src/path.rs

+33-9
Original file line numberDiff line numberDiff line change
@@ -1420,6 +1420,9 @@ impl Clone for PathBuf {
14201420

14211421
#[stable(feature = "box_from_path", since = "1.17.0")]
14221422
impl From<&Path> for Box<Path> {
1423+
/// Creates a boxed [`Path`] from a reference.
1424+
///
1425+
/// This will allocate and clone `path` to it.
14231426
fn from(path: &Path) -> Box<Path> {
14241427
let boxed: Box<OsStr> = path.inner.into();
14251428
let rw = Box::into_raw(boxed) as *mut Path;
@@ -1429,6 +1432,9 @@ impl From<&Path> for Box<Path> {
14291432

14301433
#[stable(feature = "box_from_cow", since = "1.45.0")]
14311434
impl From<Cow<'_, Path>> for Box<Path> {
1435+
/// Creates a boxed [`Path`] from a clone-on-write pointer.
1436+
///
1437+
/// Converting from a `Cow::Owned` does not clone or allocate.
14321438
#[inline]
14331439
fn from(cow: Cow<'_, Path>) -> Box<Path> {
14341440
match cow {
@@ -1471,6 +1477,9 @@ impl Clone for Box<Path> {
14711477

14721478
#[stable(feature = "rust1", since = "1.0.0")]
14731479
impl<T: ?Sized + AsRef<OsStr>> From<&T> for PathBuf {
1480+
/// Converts a borrowed `OsStr` to a `PathBuf`.
1481+
///
1482+
/// Allocates a [`PathBuf`] and copies the data into it.
14741483
#[inline]
14751484
fn from(s: &T) -> PathBuf {
14761485
PathBuf::from(s.as_ref().to_os_string())
@@ -1575,6 +1584,10 @@ impl Default for PathBuf {
15751584

15761585
#[stable(feature = "cow_from_path", since = "1.6.0")]
15771586
impl<'a> From<&'a Path> for Cow<'a, Path> {
1587+
/// Creates a clone-on-write pointer from a reference to
1588+
/// [`Path`].
1589+
///
1590+
/// This conversion does not clone or allocate.
15781591
#[inline]
15791592
fn from(s: &'a Path) -> Cow<'a, Path> {
15801593
Cow::Borrowed(s)
@@ -1583,6 +1596,10 @@ impl<'a> From<&'a Path> for Cow<'a, Path> {
15831596

15841597
#[stable(feature = "cow_from_path", since = "1.6.0")]
15851598
impl<'a> From<PathBuf> for Cow<'a, Path> {
1599+
/// Creates a clone-on-write pointer from an owned
1600+
/// instance of [`PathBuf`].
1601+
///
1602+
/// This conversion does not clone or allocate.
15861603
#[inline]
15871604
fn from(s: PathBuf) -> Cow<'a, Path> {
15881605
Cow::Owned(s)
@@ -1591,6 +1608,10 @@ impl<'a> From<PathBuf> for Cow<'a, Path> {
15911608

15921609
#[stable(feature = "cow_from_pathbuf_ref", since = "1.28.0")]
15931610
impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
1611+
/// Creates a clone-on-write pointer from a reference to
1612+
/// [`PathBuf`].
1613+
///
1614+
/// This conversion does not clone or allocate.
15941615
#[inline]
15951616
fn from(p: &'a PathBuf) -> Cow<'a, Path> {
15961617
Cow::Borrowed(p.as_path())
@@ -1599,6 +1620,9 @@ impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
15991620

16001621
#[stable(feature = "pathbuf_from_cow_path", since = "1.28.0")]
16011622
impl<'a> From<Cow<'a, Path>> for PathBuf {
1623+
/// Converts a clone-on-write pointer to an owned path.
1624+
///
1625+
/// Converting from a `Cow::Owned` does not clone or allocate.
16021626
#[inline]
16031627
fn from(p: Cow<'a, Path>) -> Self {
16041628
p.into_owned()
@@ -2462,10 +2486,10 @@ impl Path {
24622486
/// Returns `true` if the path points at an existing entity.
24632487
///
24642488
/// This function will traverse symbolic links to query information about the
2465-
/// destination file. In case of broken symbolic links this will return `false`.
2489+
/// destination file.
24662490
///
2467-
/// If you cannot access the directory containing the file, e.g., because of a
2468-
/// permission error, this will return `false`.
2491+
/// If you cannot access the metadata of the file, e.g. because of a
2492+
/// permission error or broken symbolic links, this will return `false`.
24692493
///
24702494
/// # Examples
24712495
///
@@ -2513,10 +2537,10 @@ impl Path {
25132537
/// Returns `true` if the path exists on disk and is pointing at a regular file.
25142538
///
25152539
/// This function will traverse symbolic links to query information about the
2516-
/// destination file. In case of broken symbolic links this will return `false`.
2540+
/// destination file.
25172541
///
2518-
/// If you cannot access the directory containing the file, e.g., because of a
2519-
/// permission error, this will return `false`.
2542+
/// If you cannot access the metadata of the file, e.g. because of a
2543+
/// permission error or broken symbolic links, this will return `false`.
25202544
///
25212545
/// # Examples
25222546
///
@@ -2545,10 +2569,10 @@ impl Path {
25452569
/// Returns `true` if the path exists on disk and is pointing at a directory.
25462570
///
25472571
/// This function will traverse symbolic links to query information about the
2548-
/// destination file. In case of broken symbolic links this will return `false`.
2572+
/// destination file.
25492573
///
2550-
/// If you cannot access the directory containing the file, e.g., because of a
2551-
/// permission error, this will return `false`.
2574+
/// If you cannot access the metadata of the file, e.g. because of a
2575+
/// permission error or broken symbolic links, this will return `false`.
25522576
///
25532577
/// # Examples
25542578
///

‎library/std/src/time.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub use core::time::Duration;
8282
/// Currently, the following system calls are being used to get the current time using `now()`:
8383
///
8484
/// | Platform | System call |
85-
/// |:---------:|:--------------------------------------------------------------------:|
85+
/// |-----------|----------------------------------------------------------------------|
8686
/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
8787
/// | UNIX | [clock_gettime (Monotonic Clock)] |
8888
/// | Darwin | [mach_absolute_time] |
@@ -158,7 +158,7 @@ pub struct Instant(time::Instant);
158158
/// Currently, the following system calls are being used to get the current time using `now()`:
159159
///
160160
/// | Platform | System call |
161-
/// |:---------:|:--------------------------------------------------------------------:|
161+
/// |-----------|----------------------------------------------------------------------|
162162
/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
163163
/// | UNIX | [clock_gettime (Realtime Clock)] |
164164
/// | Darwin | [gettimeofday] |

‎src/librustdoc/core.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,9 @@ crate fn create_config(
217217
// By default, rustdoc ignores all lints.
218218
// Specifically unblock lints relevant to documentation or the lint machinery itself.
219219
let mut lints_to_show = vec![
220-
// it's unclear whether this should be part of rustdoc directly (#77364)
220+
// it's unclear whether these should be part of rustdoc directly (#77364)
221221
rustc_lint::builtin::MISSING_DOCS.name.to_string(),
222+
rustc_lint::builtin::INVALID_DOC_ATTRIBUTES.name.to_string(),
222223
// these are definitely not part of rustdoc, but we want to warn on them anyway.
223224
rustc_lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_string(),
224225
rustc_lint::builtin::UNKNOWN_LINTS.name.to_string(),

‎src/librustdoc/html/layout.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ crate fn render<T: Print, S: Print>(
8787
{sidebar}\
8888
</nav>\
8989
<div class=\"theme-picker\">\
90-
<button id=\"theme-picker\" aria-label=\"Pick another theme!\" aria-haspopup=\"menu\">\
90+
<button id=\"theme-picker\" aria-label=\"Pick another theme!\" aria-haspopup=\"menu\" title=\"themes\">\
9191
<img src=\"{static_root_path}brush{suffix}.svg\" \
9292
width=\"18\" height=\"18\" \
9393
alt=\"Pick another theme!\">\
@@ -105,8 +105,8 @@ crate fn render<T: Print, S: Print>(
105105
placeholder=\"Click or press ‘S’ to search, ‘?’ for more options…\" \
106106
type=\"search\">\
107107
</div>\
108-
<button type=\"button\" id=\"help-button\">?</button>
109-
<a id=\"settings-menu\" href=\"{root_path}settings.html\">\
108+
<button type=\"button\" id=\"help-button\" title=\"help\">?</button>
109+
<a id=\"settings-menu\" href=\"{root_path}settings.html\" title=\"settings\">\
110110
<img src=\"{static_root_path}wheel{suffix}.svg\" \
111111
width=\"18\" height=\"18\" \
112112
alt=\"Change settings\">\

‎src/librustdoc/html/render/print_item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub(super) fn print_item(cx: &Context<'_>, item: &clean::Item, buf: &mut Buffer,
7878
write!(buf, "<a class=\"{}\" href=\"#\">{}</a>", item.type_(), item.name.as_ref().unwrap());
7979
write!(
8080
buf,
81-
"<button id=\"copy-path\" onclick=\"copy_path(this)\">\
81+
"<button id=\"copy-path\" onclick=\"copy_path(this)\" title=\"copy path\">\
8282
<img src=\"{static_root_path}clipboard{suffix}.svg\" \
8383
width=\"19\" height=\"18\" \
8484
alt=\"Copy item import\" \
+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
// check-pass
21
// run-rustfix
3-
2+
#![deny(warnings)]
43
#![feature(doc_notable_trait)]
54

65
#[doc(notable_trait)]
7-
//~^ WARN unknown `doc` attribute `spotlight`
6+
//~^ ERROR unknown `doc` attribute `spotlight`
87
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
98
trait MyTrait {}

‎src/test/rustdoc-ui/doc-spotlight.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
// check-pass
21
// run-rustfix
3-
2+
#![deny(warnings)]
43
#![feature(doc_notable_trait)]
54

65
#[doc(spotlight)]
7-
//~^ WARN unknown `doc` attribute `spotlight`
6+
//~^ ERROR unknown `doc` attribute `spotlight`
87
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
98
trait MyTrait {}
+9-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
warning: unknown `doc` attribute `spotlight`
2-
--> $DIR/doc-spotlight.rs:6:7
1+
error: unknown `doc` attribute `spotlight`
2+
--> $DIR/doc-spotlight.rs:5:7
33
|
44
LL | #[doc(spotlight)]
55
| ^^^^^^^^^ help: use `notable_trait` instead
66
|
7-
= note: `#[warn(invalid_doc_attributes)]` on by default
7+
note: the lint level is defined here
8+
--> $DIR/doc-spotlight.rs:2:9
9+
|
10+
LL | #![deny(warnings)]
11+
| ^^^^^^^^
12+
= note: `#[deny(invalid_doc_attributes)]` implied by `#[deny(warnings)]`
813
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
914
= note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
1015
= note: `doc(spotlight)` was renamed to `doc(notable_trait)`
1116
= note: `doc(spotlight)` is now a no-op
1217

13-
warning: 1 warning emitted
18+
error: aborting due to previous error
1419

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#![deny(invalid_doc_attributes)]
2+
//~^ NOTE defined here
3+
#![doc(x)]
4+
//~^ ERROR unknown `doc` attribute `x`
5+
//~| WARNING will become a hard error
6+
//~| NOTE see issue #82730
7+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
error: unknown `doc` attribute `x`
2+
--> $DIR/deny-invalid-doc-attrs.rs:3:8
3+
|
4+
LL | #![doc(x)]
5+
| ^
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/deny-invalid-doc-attrs.rs:1:9
9+
|
10+
LL | #![deny(invalid_doc_attributes)]
11+
| ^^^^^^^^^^^^^^^^^^^^^^
12+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13+
= note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
14+
15+
error: aborting due to previous error
16+

0 commit comments

Comments
 (0)
Please sign in to comment.