@@ -3,7 +3,6 @@ use hooks::{ShareValue, ToOwnedShareValue};
33use crate :: fn_traits:: { FnMut1 , FnMut2 } ;
44
55pub mod callback;
6- #[ cfg( todo) ]
76pub mod element;
87pub mod form_control;
98pub mod setter;
@@ -47,7 +46,6 @@ pub trait ShareValueExt: ShareValue {
4746 self . to_owned_share_value ( ) . into_set_form_control_value ( )
4847 }
4948
50- #[ cfg( todo) ]
5149 fn into_element ( self ) -> element:: SignalIntoElement < Self , element:: WithToElement >
5250 where
5351 Self : Sized ,
@@ -56,7 +54,6 @@ pub trait ShareValueExt: ShareValue {
5654 element:: SignalIntoElement ( self , element:: WithToElement )
5755 }
5856
59- #[ cfg( todo) ]
6057 fn to_element (
6158 & self ,
6259 ) -> element:: SignalIntoElement < Self :: OwnedShareValue , element:: WithToElement >
@@ -67,7 +64,6 @@ pub trait ShareValueExt: ShareValue {
6764 self . to_owned_share_value ( ) . into_element ( )
6865 }
6966
70- #[ cfg( todo) ]
7167 fn into_element_with_fn < F > ( self , f : F ) -> element:: SignalIntoElement < Self , element:: WithFn < F > >
7268 where
7369 Self : Sized ,
@@ -76,7 +72,6 @@ pub trait ShareValueExt: ShareValue {
7672 element:: SignalIntoElement ( self , element:: WithFn ( f) )
7773 }
7874
79- #[ cfg( todo) ]
8075 fn to_element_with_fn < F > (
8176 & self ,
8277 f : F ,
@@ -88,7 +83,6 @@ pub trait ShareValueExt: ShareValue {
8883 self . to_owned_share_value ( ) . into_element_with_fn ( f)
8984 }
9085
91- #[ cfg( todo) ]
9286 fn into_element_with_memo < F , Dep > (
9387 self ,
9488 f : F ,
@@ -102,7 +96,6 @@ pub trait ShareValueExt: ShareValue {
10296 element:: SignalIntoElement ( self , crate :: Memo ( f, dep) )
10397 }
10498
105- #[ cfg( todo) ]
10699 fn to_element_with_memo < F , Dep > (
107100 & self ,
108101 f : F ,
0 commit comments