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>`
|
2024-12-31 01:20:45 +00:00
|
|
|
help: to modify a `HashMap<&str, String>` use `.get_mut()`
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - map["peter"].clear();
|
|
|
|
LL + if let Some(val) = map.get_mut("peter") { val.clear(); };
|
|
|
|
|
|
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>`
|
2024-12-31 01:03:18 +00:00
|
|
|
help: use `.insert()` to insert a value into a `HashMap<&str, String>`, `.get_mut()` to modify it, or the entry API for more flexibility
|
2022-08-25 13:36:33 +00:00
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - map["peter"] = "0".to_string();
|
|
|
|
LL + map.insert("peter", "0".to_string());
|
|
|
|
|
|
|
|
|
LL - map["peter"] = "0".to_string();
|
|
|
|
LL + if let Some(val) = map.get_mut("peter") { *val = "0".to_string(); };
|
|
|
|
|
|
|
|
|
LL - map["peter"] = "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`.
|