I have code like this:
#[macro_use]
extern crate lazy_static;
use std::collections::HashMap;
use std::cell::RefCell;
use std::sync::{RwLock, RwLockReadGuard, LockResult};
lazy_static! {
static ref SUBS: RwLock<HashMap<String, String>> = RwLock::new(HashMap::new());
}
pub fn get_sub(key: &str) -> Option<&String> {
let subs: LockResult<RwLockReadGuard<HashMap<String, String>>> = SUBS.read();
let x: RwLockReadGuard<HashMap<String, String>> = subs.unwrap();
x.get(key)
}
And it doesn't compile:
error: `x` does not live long enough
--> src/main.rs:15:5
|
15 | x.get(key)
| ^ does not live long enough
16 | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the anonymous lifetime #1 defined on the body at 12:45...
--> src/main.rs:12:46
|
12 | pub fn get_sub(key: &str) -> Option<&String> {
| ______________________________________________^ starting here...
13 | | let subs: LockResult<RwLockReadGuard<HashMap<String, String>>> = SUBS.read();
14 | | let x: RwLockReadGuard<HashMap<String, String>> = subs.unwrap();
15 | | x.get(key)
16 | | }
| |_^ ...ending here
I am completely stumped. I don't understand why this doesn't compile.