futures_signals::signal_map

Type Alias BoxSignalMap

Source
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.

Aliased Type§

struct BoxSignalMap<'a, Key, Value> {}