pub trait SharedRatelimiterTrait<T> {
// Required method
fn limit_on<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 T,
value: NonZeroU32,
) -> Pin<Box<dyn Future<Output = Result<(), InsufficientCapacity>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}