Skip to content

Commit 9900178

Browse files
committed
Auto merge of #75715 - tmandry:rollup-18atkj4, r=tmandry
Rollup of 7 pull requests Successful merges: - #75069 (move const param structural match checks to wfcheck) - #75587 (mir building: fix some comments) - #75593 (Adjust installation place for compiler docs) - #75648 (Make OnceCell<T> transparent to dropck) - #75649 (Fix intra-doc links for inherent impls that are both lang items and not the default impl) - #75674 (Move to intra doc links for std::io) - #75696 (Remove `#[cfg(miri)]` from OnceCell tests) Failed merges: r? @ghost
2 parents 443e177 + ad3db41 commit 9900178

File tree

54 files changed

+604
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+604
-755
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -4106,6 +4106,7 @@ dependencies = [
41064106
"rustc-rayon",
41074107
"serde",
41084108
"serde_json",
4109+
"smallvec 1.4.2",
41094110
"tempfile",
41104111
]
41114112

library/core/tests/lazy.rs

+9
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,12 @@ fn reentrant_init() {
122122
});
123123
eprintln!("use after free: {:?}", dangling_ref.get().unwrap());
124124
}
125+
126+
#[test]
127+
fn dropck() {
128+
let cell = OnceCell::new();
129+
{
130+
let s = String::new();
131+
cell.set(&s).unwrap();
132+
}
133+
}

library/std/src/io/buffered.rs

+24-26
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,16 @@ use crate::memchr;
2121
/// *repeated* read calls to the same file or network socket. It does not
2222
/// help when reading very large amounts at once, or reading just one or a few
2323
/// times. It also provides no advantage when reading from a source that is
24-
/// already in memory, like a `Vec<u8>`.
24+
/// already in memory, like a [`Vec`]`<u8>`.
2525
///
2626
/// When the `BufReader<R>` is dropped, the contents of its buffer will be
2727
/// discarded. Creating multiple instances of a `BufReader<R>` on the same
2828
/// stream can cause data loss. Reading from the underlying reader after
29-
/// unwrapping the `BufReader<R>` with `BufReader::into_inner` can also cause
29+
/// unwrapping the `BufReader<R>` with [`BufReader::into_inner`] can also cause
3030
/// data loss.
3131
///
32-
/// [`Read`]: ../../std/io/trait.Read.html
33-
/// [`TcpStream::read`]: ../../std/net/struct.TcpStream.html#method.read
34-
/// [`TcpStream`]: ../../std/net/struct.TcpStream.html
32+
/// [`TcpStream::read`]: Read::read
33+
/// [`TcpStream`]: crate::net::TcpStream
3534
///
3635
/// # Examples
3736
///
@@ -155,7 +154,9 @@ impl<R> BufReader<R> {
155154

156155
/// Returns a reference to the internally buffered data.
157156
///
158-
/// Unlike `fill_buf`, this will not attempt to fill the buffer if it is empty.
157+
/// Unlike [`fill_buf`], this will not attempt to fill the buffer if it is empty.
158+
///
159+
/// [`fill_buf`]: BufRead::fill_buf
159160
///
160161
/// # Examples
161162
///
@@ -338,27 +339,26 @@ where
338339
impl<R: Seek> Seek for BufReader<R> {
339340
/// Seek to an offset, in bytes, in the underlying reader.
340341
///
341-
/// The position used for seeking with `SeekFrom::Current(_)` is the
342+
/// The position used for seeking with [`SeekFrom::Current`]`(_)` is the
342343
/// position the underlying reader would be at if the `BufReader<R>` had no
343344
/// internal buffer.
344345
///
345346
/// Seeking always discards the internal buffer, even if the seek position
346347
/// would otherwise fall within it. This guarantees that calling
347-
/// `.into_inner()` immediately after a seek yields the underlying reader
348+
/// [`BufReader::into_inner()`] immediately after a seek yields the underlying reader
348349
/// at the same position.
349350
///
350351
/// To seek without discarding the internal buffer, use [`BufReader::seek_relative`].
351352
///
352353
/// See [`std::io::Seek`] for more details.
353354
///
354-
/// Note: In the edge case where you're seeking with `SeekFrom::Current(n)`
355+
/// Note: In the edge case where you're seeking with [`SeekFrom::Current`]`(n)`
355356
/// where `n` minus the internal buffer length overflows an `i64`, two
356357
/// seeks will be performed instead of one. If the second seek returns
357-
/// `Err`, the underlying reader will be left at the same position it would
358-
/// have if you called `seek` with `SeekFrom::Current(0)`.
358+
/// [`Err`], the underlying reader will be left at the same position it would
359+
/// have if you called `seek` with [`SeekFrom::Current`]`(0)`.
359360
///
360-
/// [`BufReader::seek_relative`]: struct.BufReader.html#method.seek_relative
361-
/// [`std::io::Seek`]: trait.Seek.html
361+
/// [`std::io::Seek`]: Seek
362362
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
363363
let result: u64;
364364
if let SeekFrom::Current(n) = pos {
@@ -397,7 +397,7 @@ impl<R: Seek> Seek for BufReader<R> {
397397
/// *repeated* write calls to the same file or network socket. It does not
398398
/// help when writing very large amounts at once, or writing just one or a few
399399
/// times. It also provides no advantage when writing to a destination that is
400-
/// in memory, like a `Vec<u8>`.
400+
/// in memory, like a [`Vec`]<u8>`.
401401
///
402402
/// It is critical to call [`flush`] before `BufWriter<W>` is dropped. Though
403403
/// dropping will attempt to flush the contents of the buffer, any errors
@@ -441,10 +441,9 @@ impl<R: Seek> Seek for BufReader<R> {
441441
/// together by the buffer and will all be written out in one system call when
442442
/// the `stream` is flushed.
443443
///
444-
/// [`Write`]: ../../std/io/trait.Write.html
445-
/// [`TcpStream::write`]: ../../std/net/struct.TcpStream.html#method.write
446-
/// [`TcpStream`]: ../../std/net/struct.TcpStream.html
447-
/// [`flush`]: #method.flush
444+
/// [`TcpStream::write`]: Write::write
445+
/// [`TcpStream`]: crate::net::TcpStream
446+
/// [`flush`]: Write::flush
448447
#[stable(feature = "rust1", since = "1.0.0")]
449448
pub struct BufWriter<W: Write> {
450449
inner: Option<W>,
@@ -455,7 +454,7 @@ pub struct BufWriter<W: Write> {
455454
panicked: bool,
456455
}
457456

458-
/// An error returned by `into_inner` which combines an error that
457+
/// An error returned by [`BufWriter::into_inner`] which combines an error that
459458
/// happened while writing out the buffer, and the buffered writer object
460459
/// which may be used to recover from the condition.
461460
///
@@ -629,7 +628,7 @@ impl<W: Write> BufWriter<W> {
629628
///
630629
/// # Errors
631630
///
632-
/// An `Err` will be returned if an error occurs while flushing the buffer.
631+
/// An [`Err`] will be returned if an error occurs while flushing the buffer.
633632
///
634633
/// # Examples
635634
///
@@ -725,7 +724,8 @@ impl<W: Write> Drop for BufWriter<W> {
725724
}
726725

727726
impl<W> IntoInnerError<W> {
728-
/// Returns the error which caused the call to `into_inner()` to fail.
727+
/// Returns the error which caused the call to [`BufWriter::into_inner()`]
728+
/// to fail.
729729
///
730730
/// This error was returned when attempting to write the internal buffer.
731731
///
@@ -819,17 +819,15 @@ impl<W> fmt::Display for IntoInnerError<W> {
819819
/// Wraps a writer and buffers output to it, flushing whenever a newline
820820
/// (`0x0a`, `'\n'`) is detected.
821821
///
822-
/// The [`BufWriter`][bufwriter] struct wraps a writer and buffers its output.
822+
/// The [`BufWriter`] struct wraps a writer and buffers its output.
823823
/// But it only does this batched write when it goes out of scope, or when the
824824
/// internal buffer is full. Sometimes, you'd prefer to write each line as it's
825825
/// completed, rather than the entire buffer at once. Enter `LineWriter`. It
826826
/// does exactly that.
827827
///
828-
/// Like [`BufWriter`][bufwriter], a `LineWriter`’s buffer will also be flushed when the
828+
/// Like [`BufWriter`], a `LineWriter`’s buffer will also be flushed when the
829829
/// `LineWriter` goes out of scope or when its internal buffer is full.
830830
///
831-
/// [bufwriter]: struct.BufWriter.html
832-
///
833831
/// If there's still a partial line in the buffer when the `LineWriter` is
834832
/// dropped, it will flush those contents.
835833
///
@@ -979,7 +977,7 @@ impl<W: Write> LineWriter<W> {
979977
///
980978
/// # Errors
981979
///
982-
/// An `Err` will be returned if an error occurs while flushing the buffer.
980+
/// An [`Err`] will be returned if an error occurs while flushing the buffer.
983981
///
984982
/// # Examples
985983
///

library/std/src/io/cursor.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use core::convert::TryInto;
99
/// [`Seek`] implementation.
1010
///
1111
/// `Cursor`s are used with in-memory buffers, anything implementing
12-
/// `AsRef<[u8]>`, to allow them to implement [`Read`] and/or [`Write`],
12+
/// [`AsRef`]`<[u8]>`, to allow them to implement [`Read`] and/or [`Write`],
1313
/// allowing these buffers to be used anywhere you might use a reader or writer
1414
/// that does actual I/O.
1515
///
@@ -23,12 +23,8 @@ use core::convert::TryInto;
2323
/// code, but use an in-memory buffer in our tests. We can do this with
2424
/// `Cursor`:
2525
///
26-
/// [`Seek`]: trait.Seek.html
27-
/// [`Read`]: ../../std/io/trait.Read.html
28-
/// [`Write`]: ../../std/io/trait.Write.html
29-
/// [`Vec`]: ../../std/vec/struct.Vec.html
30-
/// [bytes]: ../../std/primitive.slice.html
31-
/// [`File`]: ../fs/struct.File.html
26+
/// [bytes]: crate::slice
27+
/// [`File`]: crate::fs::File
3228
///
3329
/// ```no_run
3430
/// use std::io::prelude::*;
@@ -81,8 +77,8 @@ pub struct Cursor<T> {
8177
impl<T> Cursor<T> {
8278
/// Creates a new cursor wrapping the provided underlying in-memory buffer.
8379
///
84-
/// Cursor initial position is `0` even if underlying buffer (e.g., `Vec`)
85-
/// is not empty. So writing to cursor starts with overwriting `Vec`
80+
/// Cursor initial position is `0` even if underlying buffer (e.g., [`Vec`])
81+
/// is not empty. So writing to cursor starts with overwriting [`Vec`]
8682
/// content, not with appending to it.
8783
///
8884
/// # Examples

library/std/src/io/error.rs

+35-30
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ use crate::fmt;
44
use crate::result;
55
use crate::sys;
66

7-
/// A specialized [`Result`](../result/enum.Result.html) type for I/O
8-
/// operations.
7+
/// A specialized [`Result`] type for I/O operations.
98
///
109
/// This type is broadly used across [`std::io`] for any operation which may
1110
/// produce an error.
@@ -16,12 +15,13 @@ use crate::sys;
1615
/// While usual Rust style is to import types directly, aliases of [`Result`]
1716
/// often are not, to make it easier to distinguish between them. [`Result`] is
1817
/// generally assumed to be [`std::result::Result`][`Result`], and so users of this alias
19-
/// will generally use `io::Result` instead of shadowing the prelude's import
18+
/// will generally use `io::Result` instead of shadowing the [prelude]'s import
2019
/// of [`std::result::Result`][`Result`].
2120
///
22-
/// [`std::io`]: ../io/index.html
23-
/// [`io::Error`]: ../io/struct.Error.html
24-
/// [`Result`]: ../result/enum.Result.html
21+
/// [`std::io`]: crate::io
22+
/// [`io::Error`]: Error
23+
/// [`Result`]: crate::result::Result
24+
/// [prelude]: crate::prelude
2525
///
2626
/// # Examples
2727
///
@@ -48,10 +48,9 @@ pub type Result<T> = result::Result<T, Error>;
4848
/// `Error` can be created with crafted error messages and a particular value of
4949
/// [`ErrorKind`].
5050
///
51-
/// [`Read`]: ../io/trait.Read.html
52-
/// [`Write`]: ../io/trait.Write.html
53-
/// [`Seek`]: ../io/trait.Seek.html
54-
/// [`ErrorKind`]: enum.ErrorKind.html
51+
/// [`Read`]: crate::io::Read
52+
/// [`Write`]: crate::io::Write
53+
/// [`Seek`]: crate::io::Seek
5554
#[stable(feature = "rust1", since = "1.0.0")]
5655
pub struct Error {
5756
repr: Repr,
@@ -83,7 +82,7 @@ struct Custom {
8382
///
8483
/// It is used with the [`io::Error`] type.
8584
///
86-
/// [`io::Error`]: struct.Error.html
85+
/// [`io::Error`]: Error
8786
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
8887
#[stable(feature = "rust1", since = "1.0.0")]
8988
#[allow(deprecated)]
@@ -137,7 +136,7 @@ pub enum ErrorKind {
137136
/// For example, a function that reads a file into a string will error with
138137
/// `InvalidData` if the file's contents are not valid UTF-8.
139138
///
140-
/// [`InvalidInput`]: #variant.InvalidInput
139+
/// [`InvalidInput`]: ErrorKind::InvalidInput
141140
#[stable(feature = "io_invalid_data", since = "1.2.0")]
142141
InvalidData,
143142
/// The I/O operation's timeout expired, causing it to be canceled.
@@ -150,8 +149,8 @@ pub enum ErrorKind {
150149
/// particular number of bytes but only a smaller number of bytes could be
151150
/// written.
152151
///
153-
/// [`write`]: ../../std/io/trait.Write.html#tymethod.write
154-
/// [`Ok(0)`]: ../../std/io/type.Result.html
152+
/// [`write`]: crate::io::Write::write
153+
/// [`Ok(0)`]: Ok
155154
#[stable(feature = "rust1", since = "1.0.0")]
156155
WriteZero,
157156
/// This operation was interrupted.
@@ -220,9 +219,6 @@ impl From<ErrorKind> for Error {
220219
/// let error = Error::from(not_found);
221220
/// assert_eq!("entity not found", format!("{}", error));
222221
/// ```
223-
///
224-
/// [`ErrorKind`]: ../../std/io/enum.ErrorKind.html
225-
/// [`Error`]: ../../std/io/struct.Error.html
226222
#[inline]
227223
fn from(kind: ErrorKind) -> Error {
228224
Error { repr: Repr::Simple(kind) }
@@ -235,7 +231,7 @@ impl Error {
235231
///
236232
/// This function is used to generically create I/O errors which do not
237233
/// originate from the OS itself. The `error` argument is an arbitrary
238-
/// payload which will be contained in this `Error`.
234+
/// payload which will be contained in this [`Error`].
239235
///
240236
/// # Examples
241237
///
@@ -264,7 +260,7 @@ impl Error {
264260
///
265261
/// This function reads the value of `errno` for the target platform (e.g.
266262
/// `GetLastError` on Windows) and will return a corresponding instance of
267-
/// `Error` for the error code.
263+
/// [`Error`] for the error code.
268264
///
269265
/// # Examples
270266
///
@@ -278,7 +274,7 @@ impl Error {
278274
Error::from_raw_os_error(sys::os::errno() as i32)
279275
}
280276

281-
/// Creates a new instance of an `Error` from a particular OS error code.
277+
/// Creates a new instance of an [`Error`] from a particular OS error code.
282278
///
283279
/// # Examples
284280
///
@@ -310,9 +306,12 @@ impl Error {
310306

311307
/// Returns the OS error that this error represents (if any).
312308
///
313-
/// If this `Error` was constructed via `last_os_error` or
314-
/// `from_raw_os_error`, then this function will return `Some`, otherwise
315-
/// it will return `None`.
309+
/// If this [`Error`] was constructed via [`last_os_error`] or
310+
/// [`from_raw_os_error`], then this function will return [`Some`], otherwise
311+
/// it will return [`None`].
312+
///
313+
/// [`last_os_error`]: Error::last_os_error
314+
/// [`from_raw_os_error`]: Error::from_raw_os_error
316315
///
317316
/// # Examples
318317
///
@@ -345,8 +344,10 @@ impl Error {
345344

346345
/// Returns a reference to the inner error wrapped by this error (if any).
347346
///
348-
/// If this `Error` was constructed via `new` then this function will
349-
/// return `Some`, otherwise it will return `None`.
347+
/// If this [`Error`] was constructed via [`new`] then this function will
348+
/// return [`Some`], otherwise it will return [`None`].
349+
///
350+
/// [`new`]: Error::new
350351
///
351352
/// # Examples
352353
///
@@ -380,8 +381,10 @@ impl Error {
380381
/// Returns a mutable reference to the inner error wrapped by this error
381382
/// (if any).
382383
///
383-
/// If this `Error` was constructed via `new` then this function will
384-
/// return `Some`, otherwise it will return `None`.
384+
/// If this [`Error`] was constructed via [`new`] then this function will
385+
/// return [`Some`], otherwise it will return [`None`].
386+
///
387+
/// [`new`]: Error::new
385388
///
386389
/// # Examples
387390
///
@@ -448,8 +451,10 @@ impl Error {
448451

449452
/// Consumes the `Error`, returning its inner error (if any).
450453
///
451-
/// If this `Error` was constructed via `new` then this function will
452-
/// return `Some`, otherwise it will return `None`.
454+
/// If this [`Error`] was constructed via [`new`] then this function will
455+
/// return [`Some`], otherwise it will return [`None`].
456+
///
457+
/// [`new`]: Error::new
453458
///
454459
/// # Examples
455460
///
@@ -480,7 +485,7 @@ impl Error {
480485
}
481486
}
482487

483-
/// Returns the corresponding `ErrorKind` for this error.
488+
/// Returns the corresponding [`ErrorKind`] for this error.
484489
///
485490
/// # Examples
486491
///

0 commit comments

Comments
 (0)