| Error | Don't Just Say | Ask Instead |
| E0382 | "Clone it" | Who should own this data? | | E0597 | "Extend lifetime" | Is the scope boundary correct? | | E0506 | "End borrow first" | Should mutation happen elsewhere? | | E0507 | "Clone before move" | Why are we moving from a reference? | | E0515 | "Return owned" | Should caller own the data? |
| E0716 | "Bind to variable" | Why is this temporary? | | E0106 | "Add 'a" | What is the actual lifetime relationship? |
CRITICO: utilizzare per problemi di proprietà/prestito/durata. Trigger: E0382, E0597, E0506, E0507, E0515, E0716, E0106, valore spostato, valore preso in prestito non vive abbastanza a lungo, non può uscire, uso del valore spostato, proprietà, prestito, durata, 'a, 'statico, spostamento, clone, Copia, 所有权, 借用,生命周期 Fonte: zhanghandong/rust-skills.