Stage 10.10: Internal Module Referencing
Rust has several keywords you can use in your use path to quickly get ahold of the module you want:
crate
- the root module of your cratesuper
- the parent module of your current moduleself
- the current module
Further information: