I'm trying to use a HashMap<String, &Trait>
but I have an error message I don't understand. Here's the code (playground):
use std::collections::HashMap;
trait Trait {}
struct Struct;
impl Trait for Struct {}
fn main() {
let mut map: HashMap<String, &Trait> = HashMap::new();
let s = Struct;
map.insert("key".to_string(), &s);
}
Here's the error I'm getting:
error[E0597]: `s` does not live long enough
--> src/main.rs:12:36
|
12 | map.insert("key".to_string(), &s);
| ^ borrowed value does not live long enough
13 | }
| - `s` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
What's happening here? Is there a workaround?
This issue was solved with non-lexical lifetimes, and should not be a concern from Rust 2018 onwards. The answer below is relevant for people using older versions of Rust.
map
outlivess
, so at some point inmap
's life (just before destruction),s
will be invalid. This is solvable by switching their order of construction, and thus of destruction:If you instead want the
HashMap
to own the references, use owned pointers: