Function use_interval_with_options

Source
pub fn use_interval_with_options<N>(
    interval: N,
    options: UseIntervalOptions,
) -> UseIntervalReturn<impl Fn() + Clone + Send + Sync, impl Fn() + Clone + Send + Sync, impl Fn() + Clone + Send + Sync>
where N: Into<Signal<u64>>,
Expand description

Version of use_interval that takes UseIntervalOptions. See use_interval for how to use.