I started off avoiding mod.rs because it’s the old way and I prefer having the module name as the filename. However, if the module needs a folder for submodules anyway, then there’s a reason to tuck it away as mod.rs, especially if not doing so leaves lots of duplicate names (a.rs, b.rs, c.rs, …, a/, b/, c/).

But then I don’t really like to have much else in mod.rs other than mod declarations and pub use. Maybe a utility fn or a not-unwieldly implementation of struct “Foo”, the module’s namesake.

  • Knusper@feddit.de
    link
    fedilink
    arrow-up
    4
    ·
    11 months ago

    For a moment in time, I rather disliked mod.rs files.

    Then my editor got an update to show the folder name in tabs, when two files were named the same.

    Now I am using mod.rs in my own code bases, because I want all related files in one place. ¯\_(ツ)_/¯