E0384
rust Immutable Variable Reassignment
A new value was assigned to a variable declared without the mut keyword. Variables in Rust are immutable by default; add mut to the declaration to allow reassignment.
A new value was assigned to a variable declared without the mut keyword. Variables in Rust are immutable by default; add mut to the declaration to allow reassignment.