We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa0f64 commit cc8155fCopy full SHA for cc8155f
src/test/rustdoc-gui/src/test_docs/lib.rs
@@ -334,7 +334,7 @@ pub mod details {
334
pub mod doc_block_table {
335
336
pub trait DocBlockTableTrait {
337
- fn func();
+ fn foo();
338
}
339
340
/// Struct doc.
@@ -350,7 +350,7 @@ pub mod doc_block_table {
350
/// | header1 | header2 |
351
/// |--------------------------|--------------------------|
352
/// | Lorem Ipsum, Lorem Ipsum | Lorem Ipsum, Lorem Ipsum |
353
- fn func() {
+ fn foo() {
354
println!();
355
356
@@ -416,3 +416,16 @@ pub trait TraitWithoutGenerics {
416
417
fn foo();
418
419
+
420
+pub mod search_results {
421
422
+ pub struct SearchResults {
423
+ pub foo: i32,
424
+ }
425
426
+ #[macro_export]
427
+ macro_rules! foo {
428
+ () => {};
429
430
431
+}
0 commit comments