Skip to main content

IntoReactiveBool

Trait IntoReactiveBool 

Source
pub trait IntoReactiveBool {
    // Required method
    fn into_reactive_bool(self) -> ReactiveValue<bool>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl IntoReactiveBool for bool

Implementors§

Source§

impl<T, F> IntoReactiveBool for MappedSignal<T, bool, F>
where T: Clone + 'static, F: Fn(&T) -> bool + 'static,