mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
fe2b39f064
Move `std::io::ErrorKind` to `core::io` * Update `rustdoc-html` tests for the new path * Add `core_io` feature to control stability. This replaces the use of `core_io_borrowed_buf` on the `core::io` module itself. * Re-export `core::io::ErrorKind` in `std::io::error`
13 lines
630 B
Rust
13 lines
630 B
Rust
//@ has deprecated/struct.A.html '//a[@href="{{channel}}/core/ops/range/struct.Range.html#structfield.start"]' 'start'
|
|
//@ has deprecated/struct.B1.html '//a[@href="{{channel}}/core/io/error/enum.ErrorKind.html#variant.NotFound"]' 'not_found'
|
|
//@ has deprecated/struct.B2.html '//a[@href="{{channel}}/core/io/error/enum.ErrorKind.html#variant.NotFound"]' 'not_found'
|
|
|
|
#[deprecated = "[start][std::ops::Range::start]"]
|
|
pub struct A;
|
|
|
|
#[deprecated(since = "0.0.0", note = "[not_found][std::io::ErrorKind::NotFound]")]
|
|
pub struct B1;
|
|
|
|
#[deprecated(note = "[not_found][std::io::ErrorKind::NotFound]", since = "0.0.0")]
|
|
pub struct B2;
|