From 14b7692388220d63484117ab55d3178d0296efad Mon Sep 17 00:00:00 2001 From: Kevin Flansburg Date: Wed, 25 Sep 2024 12:55:38 -0400 Subject: [PATCH] Make success field public --- worker/src/rate_limit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/src/rate_limit.rs b/worker/src/rate_limit.rs index c6a0bcad..64dd8513 100644 --- a/worker/src/rate_limit.rs +++ b/worker/src/rate_limit.rs @@ -13,7 +13,7 @@ struct RateLimitOptions { #[derive(Serialize, Deserialize)] pub struct RateLimitOutcome { - success: bool, + pub success: bool, } unsafe impl Send for RateLimiter {}