Module¶
https://www.reddit.com/r/rust/comments/y3p5hx/how_can_i_have_multi_level_module_nesting/
main.rsmust contain amod foo;linefoo.rsorfoo/mod.rsmust contain amod bar;linefoo/bar.rsorfoo/bar/mod.rsmust contain amod baz;line
When rust encounters mod name;, it goes and finds name.rs or name/mod.rs and uses its contents as the module at that site.