E0499
rust Multiple Mutable Borrows
A variable was borrowed mutably more than once simultaneously. Rust permits at most one active mutable reference to a value at any point in time to prevent data races.
A variable was borrowed mutably more than once simultaneously. Rust permits at most one active mutable reference to a value at any point in time to prevent data races.