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

An owned dynamically typed SignalMap.

This is useful if you don’t know the static type, or if you need indirection.