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
Currently, the str_to_string lint and the needless_closure lint miss the following: x.map(|s| s.to_string()) (where x is an iterator of &str). This can be replaced with x.map(str::to_owned), to both remove the closure and change the function.