You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pretty sure the unused-mut lint is specifically about the mut mutability modifier keyword (as in let mut a = ...). Changing &mut to & where possible sounds like a candidate Clippy lint?
I think this is by design, since that's not a let mut, and there are potential reasons for an API to take &uniq even if it only calls shared stuff (or nothing).
The text was updated successfully, but these errors were encountered: