pub static UNUSED_VARIABLES: &'static Lint
The unused_variables lint detects variables which are not used in any way.
unused_variables
let x = 5;
{{produces}}
Unused variables may signal a mistake or unfinished code. To silence the warning for the individual variable, prefix it with an underscore such as _x.
_x