Add diagnostic item for std::io::BufRead
This will be used in Clippy to detect unbuffered calls to `Read::bytes()`.
This commit is contained in:
parent
ced8e650cd
commit
f8930b44a5
2 changed files with 2 additions and 0 deletions
|
@ -250,6 +250,7 @@ symbols! {
|
||||||
Into,
|
Into,
|
||||||
IntoFuture,
|
IntoFuture,
|
||||||
IntoIterator,
|
IntoIterator,
|
||||||
|
IoBufRead,
|
||||||
IoLines,
|
IoLines,
|
||||||
IoRead,
|
IoRead,
|
||||||
IoSeek,
|
IoSeek,
|
||||||
|
|
|
@ -2249,6 +2249,7 @@ fn skip_until<R: BufRead + ?Sized>(r: &mut R, delim: u8) -> Result<usize> {
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
|
#[cfg_attr(not(test), rustc_diagnostic_item = "IoBufRead")]
|
||||||
pub trait BufRead: Read {
|
pub trait BufRead: Read {
|
||||||
/// Returns the contents of the internal buffer, filling it with more data
|
/// Returns the contents of the internal buffer, filling it with more data
|
||||||
/// from the inner reader if it is empty.
|
/// from the inner reader if it is empty.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue