added module cheat sheet

This commit is contained in:
2025-01-13 22:12:30 -07:00
parent 5725ea4a90
commit fe021038de
4 changed files with 80 additions and 6 deletions

View File

@ -14,5 +14,5 @@ rust has features for your code's organization, which parts are exposed, which d
These features are known collectively as the ``module system`` they include
- [**Packages**](Packages.md): A feature of Cargo that allows you to build, test and share crates
- [**Crates**](Crates.md): A tree of modules that produces a library or an executable
- **Modules** and **use**: lets you control the organization, scope and privacy of paths
- [**Modules** and **use**](Modules%20and%20Use.md): lets you control the organization, scope and privacy of paths
- **Paths**: A way of naming an item, such as a struct, function or module