mod_interface 0.60.0

Protocol of modularity unifying interface of a module and introducing layers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Main tests
#![allow(unused_imports)]

///  A struct for testing purpose.
#[ derive( Debug, PartialEq ) ]
pub struct CrateStructForTesting1 {}

use ::mod_interface as the_module;
use test_tools ::exposed :: *;
#[ path = "../../../../module/step/meta/src/module/terminal.rs" ]
mod terminal;

mod inc;