Skip to main content

yauth_entity/
rate_limit.rs

1/// Result of a rate limit check.
2#[derive(Debug, Clone)]
3pub struct RateLimitResult {
4    pub allowed: bool,
5    pub remaining: u32,
6    pub retry_after: u64,
7}