pub type LocalBoxSignalVec<'a, T> = Pin<Box<dyn SignalVec<Item = T> + 'a>>;
Expand description

Same as BoxSignalVec, but without the Send requirement.