Skip to content

Instantly share code, notes, and snippets.

@jayhuang75
Created March 29, 2022 20:56
Show Gist options
  • Select an option

  • Save jayhuang75/69da6c2c661684df00f09584ccf47b48 to your computer and use it in GitHub Desktop.

Select an option

Save jayhuang75/69da6c2c661684df00f09584ccf47b48 to your computer and use it in GitHub Desktop.
token_bucket_struct
pub struct TokenBucket {
rate: i64,
max_tokens: i64,
current_tokens: i64,
last_refill_timestamp: DateTime<Utc>,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment