Explorar o código

fix: change use_state to be clone

Jonathan Kelley %!s(int64=3) %!d(string=hai) anos
pai
achega
e02dfc3324
Modificáronse 1 ficheiros con 2 adicións e 4 borrados
  1. 2 4
      packages/hooks/src/usestate.rs

+ 2 - 4
packages/hooks/src/usestate.rs

@@ -275,10 +275,8 @@ impl<T: Clone> UseState<T> {
     }
 }
 
-impl<T: 'static> ToOwned for UseState<T> {
-    type Owned = UseState<T>;
-
-    fn to_owned(&self) -> Self::Owned {
+impl<T: 'static> Clone for UseState<T> {
+    fn clone(&self) -> Self {
         UseState {
             current_val: self.current_val.clone(),
             update_callback: self.update_callback.clone(),