1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-11 16:50:16 +02:00

Update src/idiomatic/leveraging-the-type-system.md

Co-authored-by: Dmitri Gribenko <gribozavr@gmail.com>
This commit is contained in:
Luca Palmieri
2025-07-08 10:32:39 +02:00
committed by GitHub
parent 71204b720d
commit a025490afd

View File

@ -35,7 +35,7 @@ Additional items speaker may mention:
types in Rust.
Evaluate, on a case-by-case basis, whether a more imperative approach may be
easier to implement, relying on Rust's borrow-checker and type system to
easier to implement. Consider using in-place mutation, relying on Rust's borrow-checker and type system to
control what can be mutated, and where.
- The same caution should be applied to object-oriented design patterns. Rust