Function signal_debounced_with_options

Source
pub fn signal_debounced_with_options<S, T>(
    value: S,
    ms: impl Into<Signal<f64>> + 'static,
    options: DebounceOptions,
) -> Signal<T, SyncStorage>
where S: Into<Signal<T, SyncStorage>>, T: Send + Sync + Clone + 'static,
Expand description

Version of signal_debounced that accepts DebounceOptions . See signal_debounced for how to use.