mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 01:13:11 +00:00
17 lines
616 B
Rust
17 lines
616 B
Rust
![]() |
#![deny(broken_intra_doc_links)]
|
||
|
|
||
|
pub mod char {
|
||
|
/// [char]
|
||
|
// @has prim_precedence/char/struct.Inner.html '//a/@href' 'https://doc.rust-lang.org/nightly/std/primitive.char.html'
|
||
|
pub struct Inner;
|
||
|
}
|
||
|
|
||
|
/// See [prim@char]
|
||
|
// @has prim_precedence/struct.MyString.html '//a/@href' 'https://doc.rust-lang.org/nightly/std/primitive.char.html'
|
||
|
pub struct MyString;
|
||
|
|
||
|
/// See also [crate::char] and [mod@char]
|
||
|
// @has prim_precedence/struct.MyString2.html '//*[@href="../prim_precedence/char/index.html"]' 'crate::char'
|
||
|
// @has - '//*[@href="../prim_precedence/char/index.html"]' 'mod@char'
|
||
|
pub struct MyString2;
|