errors.fyi community error code reference
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.

References

โ† all namespaces for E0499