1 2 3 4 5 6
use hashbrown::HashMap; use crate::pin::Pin; #[derive(Debug)] pub struct Cell<'a>{ pub pin_map: HashMap<&'a str,Pin<'a>> }