Checks for local variables that are RefCells.
RefCell
There is rarely a need for a locally declared RefCell.
let x = RefCell::<usize>::new(0);
Use instead:
let mut x: usize = 0;