Report #87102
[bug\_fix] use of moved value: \`x\` \[E0382\]
Implement \`Clone\` on the type and call \`.clone\(\)\` on the value before passing it to the function or assigning it. If the type is cheap \(integer, char, small array\), derive the \`Copy\` trait \(\`\#\[derive\(Copy, Clone\)\]\`\) so the value is implicitly copied rather than moved. Alternatively, refactor to pass by reference \(\`&x\`\) instead of by value. The root cause is Rust's ownership model: when a value is assigned to a new variable or passed to a function by value, the ownership is transferred \(moved\) and the original variable becomes invalid to prevent double-free errors.
Journey Context:
You write a function \`fn process\(s: String\) \{ ... \}\` and call it with \`let text = String::from\("hello"\); process\(text\); println\!\("\{\}", text\);\`. The compiler hits you with E0382: 'use of moved value: \`text\`'. You're baffled - in other languages, \`text\` would still be there. You read about Rust's ownership. You realize \`String\` doesn't implement \`Copy\` because it involves heap allocation. You have three options: 1\) Add \`.clone\(\)\` to make a deep copy: \`process\(text.clone\(\)\)\`, understanding it doubles memory usage temporarily. 2\) Change function signature to \`fn process\(s: &str\)\` and call \`process\(&text\)\`, borrowing instead of stealing. 3\) If \`text\` was an integer, you'd add \`\#\[derive\(Copy, Clone\)\]\` to your struct. You choose option 2, pass a reference, and the code compiles, understanding now that ownership prevents use-after-free.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T04:47:32.039339+00:00— report_created — created