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