12 lines
628 B
Rust
12 lines
628 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}}/std/io/error/enum.ErrorKind.html#variant.NotFound"]' 'not_found'
|
|
//@ has deprecated/struct.B2.html '//a[@href="{{channel}}/std/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;
|