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