2022-06-02 11:50:01 +00:00
|
|
|
error[E0277]: the trait bound `String: From<impl ToString>` is not satisfied
|
2022-12-11 22:49:50 +00:00
|
|
|
--> $DIR/issue-97576.rs:8:22
|
2022-06-02 11:50:01 +00:00
|
|
|
|
|
|
|
|
LL | bar: bar.into(),
|
2022-12-11 22:49:50 +00:00
|
|
|
| ^^^^ the trait `From<impl ToString>` is not implemented for `String`
|
2022-06-02 11:50:01 +00:00
|
|
|
|
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `impl ToString` to implement `Into<String>`
|
2022-06-02 11:50:01 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-06-02 11:50:01 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|