]> git.proxmox.com Git - rustc.git/blob - src/doc/style/style/organization.md
New upstream version 1.12.1+dfsg1
[rustc.git] / src / doc / style / style / organization.md
1 % Organization [FIXME: needs RFC]
2
3 > **[FIXME]** What else?
4
5 ### Reexport the most important types at the crate level.
6
7 Crates `pub use` the most common types for convenience, so that clients do not
8 have to remember or write the crate's module hierarchy to use these types.
9
10 ### Define types and operations together.
11
12 Type definitions and the functions/methods that operate on them should be
13 defined together in a single module, with the type appearing above the
14 functions/methods.