1#![ cfg_attr( feature = "no_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/mem_tools/latest/mem_tools/" ) ]
5#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
14
15#[ cfg( feature = "enabled" ) ]
18pub mod dependency
19{
20}
21
22#[ cfg( feature = "enabled" ) ]
24pub mod mem;
25
26#[ doc( inline ) ]
27#[ allow( unused_imports ) ]
28#[ cfg( feature = "enabled" ) ]
29pub use own::*;
30
31#[ cfg( feature = "enabled" ) ]
33#[ allow( unused_imports ) ]
34pub mod own
35{
36 use super::*;
37 #[ doc( inline ) ]
38 pub use orphan::*;
39 #[ doc( inline ) ]
40 #[ allow( unused_imports ) ]
41 pub use super::mem::orphan::*;
42}
43
44#[ cfg( feature = "enabled" ) ]
46#[ allow( unused_imports ) ]
47pub mod orphan
48{
49 use super::*;
50 #[ doc( inline ) ]
51 pub use exposed::*;
52}
53
54#[ cfg( feature = "enabled" ) ]
56#[ allow( unused_imports ) ]
57pub mod exposed
58{
59 use super::*;
60 #[ doc( inline ) ]
61 pub use prelude::*;
62 #[ doc( inline ) ]
63 #[ allow( unused_imports ) ]
64 pub use super::mem::exposed::*;
65}
66
67#[ cfg( feature = "enabled" ) ]
69#[ allow( unused_imports ) ]
70pub mod prelude
71{
72 use super::*;
73 #[ doc( inline ) ]
74 #[ allow( unused_imports ) ]
75 pub use super::mem::prelude::*;
76}