2020-09-02 07:40:56 +00:00
|
|
|
error[E0596]: cannot borrow data in an index of `HashMap<&str, String>` as mutable
|
2022-08-25 13:36:33 +00:00
|
|
|
--> $DIR/index-mut-help.rs:10:5
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | map["peter"].clear();
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^^^^^^^^^^^^ cannot borrow as mutable
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `HashMap<&str, String>`
|
2023-06-22 20:30:23 +00:00
|
|
|
= help: to modify a `HashMap<&str, String>`, use `.get_mut()`, `.insert()` or the entry API
|
2018-08-07 21:09:08 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0594]: cannot assign to data in an index of `HashMap<&str, String>`
|
2022-08-25 13:36:33 +00:00
|
|
|
--> $DIR/index-mut-help.rs:11:5
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | map["peter"] = "0".to_string();
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^^^^^^^ cannot assign
|
2019-07-07 13:16:58 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `HashMap<&str, String>`
|
2022-08-25 13:36:33 +00:00
|
|
|
help: to modify a `HashMap<&str, String>`, use `.get_mut()`, `.insert()` or the entry API
|
|
|
|
|
|
|
|
|
LL | map.insert("peter", "0".to_string());
|
|
|
|
| ~~~~~~~~ ~ +
|
|
|
|
LL | map.get_mut("peter").map(|val| { *val = "0".to_string(); });
|
|
|
|
| ~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ++++
|
|
|
|
LL | let val = map.entry("peter").or_insert("0".to_string());
|
|
|
|
| +++++++++ ~~~~~~~ ~~~~~~~~~~~~ +
|
2018-08-07 21:09:08 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0596]: cannot borrow data in an index of `HashMap<&str, String>` as mutable
|
2022-08-25 13:36:33 +00:00
|
|
|
--> $DIR/index-mut-help.rs:12:13
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _ = &mut map["peter"];
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ cannot borrow as mutable
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `HashMap<&str, String>`
|
2022-08-23 15:15:34 +00:00
|
|
|
= help: to modify a `HashMap<&str, String>`, use `.get_mut()`, `.insert()` or the entry API
|
2018-08-07 21:09:08 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-11-06 12:58:44 +00:00
|
|
|
Some errors have detailed explanations: E0594, E0596.
|
|
|
|
For more information about an error, try `rustc --explain E0594`.
|