pub trait MemcachedClient:
Send
+ Sync
+ Debug {
// Required method
fn incr(
&self,
key: &str,
initial: u64,
ttl_secs: u32,
) -> Result<u64, ServerError>;
}Available on crate feature
distributed-rate-limit only.