pub type BoxSignalVec<'a, T> = Pin<Box<dyn SignalVec<Item = T> + Send + 'a>>;
Expand description
An owned dynamically typed SignalVec
.
This is useful if you don’t know the static type, or if you need indirection.
Aliased Type§
struct BoxSignalVec<'a, T> {}