rust · rust/E0384
E0384
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.