pub type SlidingWindowPerHour<const COUNT: usize, K, B = MemoryBackend> = SlidingWindowLimit<COUNT, 3_600_000, K, B>;Expand description
Sliding-window rate limit configured to apply per hour.
Aliased Type§
pub struct SlidingWindowPerHour<const COUNT: usize, K, B = MemoryBackend>(pub <K as Key>::Extractor, pub PhantomData<B>);Tuple Fields§
§0: <K as Key>::Extractor§1: PhantomData<B>