pub static UNUSED_MUT: &'static Lint
The unused_mut lint detects mut variables which don’t need to be mutable.
unused_mut
let mut x = 5;
{{produces}}
The preferred style is to only mark variables as mut if it is required.
mut