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