mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
415 B
Text
11 lines
415 B
Text
error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
|
|
--> $DIR/from_over_into.rs:6:1
|
|
|
|
|
LL | impl Into<StringWrapper> for String {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::from-over-into` implied by `-D warnings`
|
|
= help: consider to implement `From<std::string::String>` instead
|
|
|
|
error: aborting due to previous error
|
|
|