pub enum RateLimitStrategy {
FixedWindow,
SlidingWindow,
TokenBucket,
}
Variants§
Trait Implementations§
Source§impl Clone for RateLimitStrategy
impl Clone for RateLimitStrategy
Source§fn clone(&self) -> RateLimitStrategy
fn clone(&self) -> RateLimitStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RateLimitStrategy
impl Debug for RateLimitStrategy
Source§impl<'de> Deserialize<'de> for RateLimitStrategy
impl<'de> Deserialize<'de> for RateLimitStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RateLimitStrategy
impl PartialEq for RateLimitStrategy
Source§impl Serialize for RateLimitStrategy
impl Serialize for RateLimitStrategy
impl StructuralPartialEq for RateLimitStrategy
Auto Trait Implementations§
impl Freeze for RateLimitStrategy
impl RefUnwindSafe for RateLimitStrategy
impl Send for RateLimitStrategy
impl Sync for RateLimitStrategy
impl Unpin for RateLimitStrategy
impl UnwindSafe for RateLimitStrategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more