Trait leptos::SignalStream
source · pub trait SignalStream<T> {
// Required method
fn to_stream(
&self,
cx: Scope
) -> Pin<Box<dyn Stream<Item = T> + 'static, Global>>;
}
Expand description
This trait allows converting a signal into a async Stream
.