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