Как решить вопрос "срок действия ссылки истекает срок действия заимствованного контента" в следующем контексте?
У меня есть следующая структура в моем lib.rs
pub enum ConfigurationSource {
StringContent(String),
FileContent(PathBuf)
}
pub struct ConfigurationBuilder<'a> {
config: Value,
bundles: HashMap<&'a str, &'a Vec<ConfigurationSource>>
}
impl<'a> ConfigurationBuilder<'a>{
pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
let base_config: Value = from_str("{}").unwrap();
let mut config_builder = ConfigurationBuilder{
config: base_config,
bundles: HashMap::new()
};
config_builder.merge_source(&base_source);
return config_builder;
}
//more code here
pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
self.bundles.insert(bundle_key, sources);
}
}
Я не хочу, чтобы Hashmap в экземплярах ConfigurationBuilder был владельцем bundle_key
с или source
с перешли в define_bundle
метод.
Я получаю следующие две ошибки компиляции во время сборки
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
--> src\lib.rs:67:41
|
67 | self.bundles.insert(bundle_key, sources);
| ^^^^^^^
|
note: ...the reference is valid for the lifetime 'a as defined on the impl at 27:1...
--> src\lib.rs:27:1
|
27 | / impl<'a> ConfigurationBuilder<'a>{
28 | |
29 | | pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
30 | | let base_config: Value = from_str("{}").unwrap();
... |
89 | | }
90 | | }
| |_^
note: ...but the borrowed content is only valid for the anonymous lifetime #3 defined on the method
body at 66:5
--> src\lib.rs:66:5
|
66 | / pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
67 | | self.bundles.insert(bundle_key, sources);
68 | | }
| |_____^
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
--> src\lib.rs:67:29
|
67 | self.bundles.insert(bundle_key, sources);
| ^^^^^^^^^^
|
note: ...the reference is valid for the lifetime 'a as defined on the impl at 27:1...
--> src\lib.rs:27:1
|
27 | / impl<'a> ConfigurationBuilder<'a>{
28 | |
29 | | pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
30 | | let base_config: Value = from_str("{}").unwrap();
... |
89 | | }
90 | | }
| |_^
note: ...but the borrowed content is only valid for the anonymous lifetime #2 defined on the method
body at 66:5
--> src\lib.rs:66:5
|
66 | / pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
67 | | self.bundles.insert(bundle_key, sources);
68 | | }
| |_____^
Что я делаю неправильно?
1 ответ
Решение
Ваши входные параметры для define_bundle
иметь время жизни, которое компилятор не знает, либо соответствует, либо переживает те, которые определены для структуры.
Сказать компилятору, что они ожидают, что одни и те же времена жизни добьются цели:
pub fn define_bundle(&mut self, bundle_key: &'a str, sources: &'a Vec<ConfigurationSource>) {
// ^^----------------^^ same lifetimes as the struct fields expect
self.bundles.insert(bundle_key, sources);
}