this post was submitted on 13 Aug 2023
22 points (92.3% liked)
Rust
5960 readers
3 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
all over the place because it entirely encapsulates a module in a folder. But since the name of the file is fairly obtuse and doesn't say what it is, I usually only re-export other better named files that also exist in that folder.I'm the case that I want a module with content, and then more further nested content that may use
pub(super)
, I will use a module named file and a separate folder to hold it's children modules.