2020-11-07 13:09:40 +00:00
|
|
|
// @has external_doc/struct.IncludeStrDocs.html
|
2021-10-01 10:17:15 +00:00
|
|
|
// @has - '//h2' 'External Docs'
|
|
|
|
// @has - '//h3' 'Inline Docs'
|
2020-11-07 13:09:40 +00:00
|
|
|
#[doc = include_str!("auxiliary/external-doc.md")]
|
|
|
|
/// ## Inline Docs
|
|
|
|
pub struct IncludeStrDocs;
|
|
|
|
|
|
|
|
macro_rules! dir { () => { "auxiliary" } }
|
|
|
|
|
|
|
|
// @has external_doc/struct.EagerExpansion.html
|
2021-10-01 10:17:15 +00:00
|
|
|
// @has - '//h2' 'External Docs'
|
2020-11-07 13:09:40 +00:00
|
|
|
#[doc = include_str!(concat!(dir!(), "/external-doc.md"))]
|
|
|
|
/// ## Inline Docs
|
|
|
|
pub struct EagerExpansion;
|