pub type LocalBoxSignalMap<'a, Key, Value> = Pin<Box<dyn SignalMap<Key = Key, Value = Value> + 'a>>;
Expand description

Same as BoxSignalMap, but without the Send requirement.