Rust抱怨说get_string
的寿命不够长。它似乎想要在整个功能范围内保持活力,但我看不出它是如何发生的。
error: `get_string` does not live long enough
--> src\lib.rs:7:23
|
7 | for value_pair in get_string.split('&') {
| ^^^^^^^^^^ does not live long enough
...
19 | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the anonymous lifetime #1 defined on the body at 3:59...
--> src\lib.rs:3:60
|
3 | fn parse_get(get_string: &str) -> HashMap<&str, Vec<&str>> {
| ^
use std::collections::HashMap;
fn parse_get(get_string: &str) -> HashMap<&str, Vec<&str>> {
let get_string = String::from(get_string);
let mut parameters: HashMap<&str, Vec<&str>> = HashMap::new();
for value_pair in get_string.split('&') {
let name = value_pair.split('=').nth(0).unwrap();
let value = value_pair.split('=').nth(1).unwrap();
if parameters.contains_key(name) {
parameters.get_mut(name).unwrap().push(value);
} else {
parameters.insert(name, vec![value]);
}
}
parameters
}
答案 0 :(得分:4)
您正在此处复制输入&str
:
let get_string = String::from(get_string);
此副本由函数拥有,并在函数完成时被删除,但您还返回包含对它的引用的HashMap
。应该清楚为什么这样做不起作用。
删除那一行实际上会修复错误,因为您将改为引用该函数的参数。