this post was submitted on 13 Aug 2023
24 points (92.9% liked)
Rust
5966 readers
24 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I use
mod.rs
because I like having a module entirely contained in its own directory, rather than having part of it in the parent one. Obvious exception is when the module does not have submodules.It also follows the same structure of crates, where
mod.rs
maps tolib.rs
. It has the (minor) advantage that I can trivially extract a module into its own crate by copying the module's directory and renamingmod.rs
tolib.rs
, but more than anything I like the homogeneity.Same.
My
mod.rs
only contains a sequence ofpub use self::...;
.