Function signal_throttled_with_options

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

Version of signal_throttled that accepts ThrottleOptions . See signal_throttled for how to use.