this post was submitted on 22 Dec 2023
28 points (91.2% liked)
Rust
5999 readers
64 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
Exactly.
I have a strict no-
unsafe
policy. My projects don't need anythingunsafe
provides, so needing it means my structure is bad. Anyunsafe
blocks should only be in external crates and fully tested.I'm also a big fan of getting function signatures right, even if they don't behave properly. For example, if I know a function could error, I'll go ahead and have it return a result even if every error path uses
.expect()
. That way my refactors are limited to just those functions, and probably not the functions that call it.I'm a fan of writing relatively dirty code, as long as the dirty parts are obvious (e.g. have a comment explaining why certain shortcuts were made). But as much as possible, make the function signatures correct so refactors are easier.