2016-06-27 17:10:13 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod hidden {
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn this_should_be_hidden() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn this_should_be_hidden() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - 'Methods'
|
2018-10-10 14:04:52 -05:00
|
|
|
// @!has - '//code' 'impl Foo'
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - 'this_should_be_hidden'
|
2016-06-27 17:10:13 -05:00
|
|
|
pub use hidden::Foo;
|
|
|
|
|
|
|
|
// @has foo/struct.Bar.html
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - 'Methods'
|
2018-10-10 14:04:52 -05:00
|
|
|
// @!has - '//code' 'impl Bar'
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - 'this_should_be_hidden'
|
2016-06-27 17:10:13 -05:00
|
|
|
pub use hidden::Bar;
|