Function leptos_use::use_debounce_fn_with_arg_and_options

source ยท
pub fn use_debounce_fn_with_arg_and_options<F, Arg, R>(
    func: F,
    ms: impl Into<MaybeSignal<f64>> + 'static,
    options: DebounceOptions
) -> impl Fn(Arg) -> Rc<RefCell<Option<R>>> + Clone
where F: Fn(Arg) -> R + Clone + 'static, Arg: Clone + 'static, R: 'static,
Expand description

Version of use_debounce_fn_with_arg with debounce options.