-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
into_string() is dead, long live to_owned() #27
Comments
Looks like we came full circle on this |
Wait, |
Okay, that got fixed. |
yaahc
pushed a commit
to yaahc/rust-clippy
that referenced
this issue
Mar 14, 2019
yaahc
pushed a commit
to yaahc/rust-clippy
that referenced
this issue
Mar 14, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since rust-lang/rust#19741 is merged,
str.into_string()
is no longer available. The replacement seems to bestd::borrow::ToOwned::to_owned()
. The lint should be updated to this.The text was updated successfully, but these errors were encountered: