mod_interface_runtime/
mod_interface_runtime_lib.rs

1#![ cfg_attr( not( feature = "use_std" ), no_std ) ]
2#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
3#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
4#![ doc( html_root_url = "https://docs.rs/mod_interface_runtime/latest/mod_interface_runtime/" ) ]
5#![ warn( rust_2018_idioms ) ]
6#![ warn( missing_debug_implementations ) ]
7#![ warn( missing_docs ) ]
8
9//!
10//! Protocol of modularity unifying interface of a module and introducing layers.
11//!
12
13#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/Readme.md" ) ) ]
14
15/// Namespace with dependencies.
16pub mod dependency
17{
18}
19
20/// Protected namespace of the module.
21pub mod protected
22{
23  pub use super::exposed::*;
24}
25
26pub use protected::*;
27
28/// Exposed namespace of the module.
29pub mod exposed
30{
31  pub use super::prelude::*;
32}
33
34/// Prelude to use essentials: `use my_module::prelude::*`.
35pub mod prelude
36{
37}