Function use_interval_fn_with_options

Source
pub fn use_interval_fn_with_options<CbFn, N>(
    callback: CbFn,
    interval: N,
    options: UseIntervalFnOptions,
) -> Pausable<impl Fn() + Clone + Send + Sync, impl Fn() + Clone + Send + Sync>
where CbFn: Fn() + Clone + 'static, N: Into<Signal<u64>>,
Expand description

Version of use_interval_fn that takes UseIntervalFnOptions. See use_interval_fn for how to use.