pub fn use_throttle_fn_with_arg_and_options<F, Arg, R>(
func: F,
ms: impl Into<Signal<f64>> + 'static,
options: ThrottleOptions,
) -> impl Fn(Arg) -> Arc<Mutex<Option<R>>> + Clone + Send + Sync
Expand description
Version of use_throttle_fn_with_arg
with throttle options. See the docs for use_throttle_fn
for how to use.