Skip to main content

IntoReactive

Trait IntoReactive 

Source
pub trait IntoReactive<T: Clone + 'static, M> {
    // Required method
    fn into_reactive(self) -> Reactive<T>;
}
Expand description

Disjoint-marker conversion (like IntoText): accepts T, Signal<T>, or Fn() -> T.

Required Methods§

Implementors§

Source§

impl<T: Clone + 'static> IntoReactive<T, SignalMark> for Signal<T>

Source§

impl<T: Clone + 'static> IntoReactive<T, StaticMark> for T

Source§

impl<T: Clone + 'static, F: Fn() -> T + 'static> IntoReactive<T, FnMark> for F

Day API ↩ Guides· daybrite.dev