2023-11-12 18:52:10 -06:00
|
|
|
error[E0277]: the trait bound `String: Borrow<&str>` is not satisfied
|
|
|
|
--> $DIR/point-at-index-for-obligation-failure.rs:5:9
|
|
|
|
|
|
|
|
|
LL | &s
|
2024-10-24 16:14:17 -05:00
|
|
|
| ^^ the trait `Borrow<&str>` is not implemented for `String`
|
2023-11-12 18:52:10 -06:00
|
|
|
|
|
2024-10-24 17:16:43 -05:00
|
|
|
= help: the trait `Borrow<&_>` is not implemented for `String`
|
|
|
|
but trait `Borrow<_>` is implemented for it
|
2023-11-12 18:52:10 -06:00
|
|
|
= help: for that trait implementation, expected `str`, found `&str`
|
|
|
|
= note: required for `HashMap<String, String>` to implement `Index<&&str>`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-11-12 18:52:10 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|