clippy suggests the following replacement ```diff - mem::transmute::<*mut c_void, &mut Box<FnMut(&Button)>>(data)(&button) + &mut *(data as *mut Box<FnMut(&Button)>)(&button) ``` but we should suggest parens around the `&mut *...` bonus points if the parens only appear if necessary <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->