Trait CloneReactiveState

Source
pub trait CloneReactiveState<T>
where T: Clone + 'static,
{ // Required methods fn get(&self) -> T; fn soft_get(&self) -> Option<T>; }

Required Methods§

Source

fn get(&self) -> T

Source

fn soft_get(&self) -> Option<T>

Implementors§

Source§

impl<T, U, A> CloneReactiveState<T> for ReactiveStateAccess<T, U, A>
where T: Clone + 'static,