pub trait IntoReactive<T, M>where
T: Clone + 'static,{
// Required method
fn into_reactive(self) -> Reactive<T>;
}Expand description
Disjoint-marker conversion (like IntoText): accepts T, Signal<T>, or Fn() -> T.
pub trait IntoReactive<T, M>where
T: Clone + 'static,{
// Required method
fn into_reactive(self) -> Reactive<T>;
}Disjoint-marker conversion (like IntoText): accepts T, Signal<T>, or Fn() -> T.