You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prevents violation of invariants via direct field access and/or mutation.
Encapsulates logic within types' getters and setters.
Limits the amount of debugging and fear while refactoring.
It's easy to forget about invariants when doing large refactors, and I've personally made the mistake several times. This lint would make refactors way comfier for me!
The lint also prevents new contributors from making severe mistakes.
Drawbacks
With lots of impl blocks, like in manual trait implementations, you may need to use the #[deny] often.
Alternatively, one can use a module-level lint attribute, but this can also make modules shorter or less comfy.
Example
pubstructEnemy{/// Must be between 0 and 100.////// ## Safety////// Higher numbers could result in undefined behavior by the engine.////// So... make sure to access this field using the getter + setter. I sure/// hope you remember!health:u8,}implEnemy{pubfnhealth(&self) -> u8{self.health}pubfnset_health(&mutself,value:u8) -> Result<(),()>{if value <= 100{self.health = value;Ok(())}else{Err(())}}pubfnheal(&mutself){// woops, i forgot to use the setter with its internal checks!//// i sure hope there's no undefined behavior :(self.health += 50}}
What it does
Prevents direct accesses to fields on a type.
Advantage
Drawbacks
impl
blocks, like in manual trait implementations, you may need to use the#[deny]
often.Example
Could be written as:
The text was updated successfully, but these errors were encountered: