pub fn should_refire(
last: Option<Instant>,
now: Instant,
min_gap: Duration,
) -> boolAvailable on crate feature
cli-dev only.Expand description
Leading-edge debounce: fire only if at least min_gap has elapsed since the
last fire. Pure.