3 ms·
Having worked with rust for nearly two years now (granted, on one team with agreed-upon standards): - glob imports are rare in my experience, less for the LSP’
by verandaguy 7d ago
Having worked with rust for nearly two years now (granted, on one team with agreed-upon standards):
- glob imports are rare in my experience, less for the LSP’s sake and more for code self-documentation
- the `mod foo` line exists because omitting it cannot fall back to a reasonable default visibility level (`pub`/`pub(crate)`/<none> (private))
- yencabulator 7d agoOf course it could just default to private, and if you wanted something you'd have to specify that.