reflect_tools 0.9.0

Collection of mechanisms for reflection.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

//! Test suite for `reflect_tools` crate

#[ allow( unused_imports ) ]
use reflect_tools as the_module;
#[ allow( unused_imports ) ]
use test_tools ::exposed :: *;

// Import Entity trait to make its methods available
#[ allow( unused_imports ) ]
use the_module ::reflect ::Entity;

#[ cfg( feature = "enabled" ) ]
#[ allow( unused_variables, missing_docs ) ]
mod inc;