(
func: F,
)
| 42 | #[cfg(any(feature = "textfield", feature = "textarea"))] |
| 43 | impl ValidityTransform { |
| 44 | pub(crate) fn new<F: Fn(String, NativeValidityState) -> ValidityState + 'static>( |
| 45 | func: F, |
| 46 | ) -> ValidityTransform { |
| 47 | ValidityTransform(Rc::new(func)) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | fn set_on_input_handler( |
nothing calls this directly
no test coverage detected