Type Alias futures_signals::signal::BoxSignal

source ·
pub type BoxSignal<'a, T> = Pin<Box<dyn Signal<Item = T> + Send + 'a>>;
Expand description

An owned dynamically typed Signal.

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