pub fn use_throttle_fn_with_options<F, R>(
func: F,
ms: impl Into<MaybeSignal<f64>> + 'static,
options: ThrottleOptions,
) -> impl Fn() -> Rc<RefCell<Option<R>>> + Clone
Expand description
Version of use_throttle_fn
with throttle options. See the docs for use_throttle_fn
for how to use.