1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// devela::_info::examples
//
//!
//! These examples generate example structures for documentation purposes.
//
// NOTE: rustdoc doesn't detect changes in the examples, but only in the library.
// So it's necessary to modify the library in order to rebuild the examples docs.
/* in-crate integrated examples */
/* out-crate standalone examples */
// #[path = "examples/separate_crate"]
// pub mod example_separate_crate {
// // The library.
// #[path = "src/lib.rs"]
// pub mod lib;
//
// // A selected example.
// // #[cfg(feature = "std")] // any needed features
// #[path = "examples/hello_world.rs"]
// pub mod example_hello_world;
// }