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.
E0382
rust 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.