2021-11-26 15:03:16 -08:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-11-28 20:25:41 -05:00
|
|
|
|
|
|
|
pub mod char {
|
|
|
|
/// [char]
|
2021-05-04 23:36:33 -04:00
|
|
|
// @has prim_precedence/char/struct.Inner.html '//a/@href' '{{channel}}/std/primitive.char.html'
|
2020-11-28 20:25:41 -05:00
|
|
|
pub struct Inner;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// See [prim@char]
|
2021-05-04 23:36:33 -04:00
|
|
|
// @has prim_precedence/struct.MyString.html '//a/@href' '{{channel}}/std/primitive.char.html'
|
2020-11-28 20:25:41 -05:00
|
|
|
pub struct MyString;
|
|
|
|
|
|
|
|
/// See also [crate::char] and [mod@char]
|
2021-03-17 11:41:01 -07:00
|
|
|
// @has prim_precedence/struct.MyString2.html '//*[@href="char/index.html"]' 'crate::char'
|
|
|
|
// @has - '//*[@href="char/index.html"]' 'mod@char'
|
2020-11-28 20:25:41 -05:00
|
|
|
pub struct MyString2;
|