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

Same as BoxSignal, but without the Send requirement.