errors.fyi community error code reference
E0382
rust

Use After Move

A variable was used after its value was moved to another binding. Rust's ownership model permits a value to have only one owner at a time; once moved, the original variable is no longer valid.

References

โ† all namespaces for E0382