pub struct RateLimit {
pub fill_rate: f64,
pub capacity: usize,
}Expand description
Rate limts for a single connection.
Fields§
§fill_rate: f64§capacity: usizeTrait Implementations§
Source§impl<'de> Deserialize<'de> for RateLimit
impl<'de> Deserialize<'de> for RateLimit
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 From<LimitRateInbound> for RateLimit
impl From<LimitRateInbound> for RateLimit
Source§fn from(value: LimitRateInbound) -> Self
fn from(value: LimitRateInbound) -> Self
Converts to this type from the input type.
Source§impl From<LimitRateOutbound> for RateLimit
impl From<LimitRateOutbound> for RateLimit
Source§fn from(value: LimitRateOutbound) -> Self
fn from(value: LimitRateOutbound) -> Self
Converts to this type from the input type.
Source§impl From<RateLimit> for LimitRateInbound
impl From<RateLimit> for LimitRateInbound
Source§impl From<RateLimit> for LimitRateOutbound
impl From<RateLimit> for LimitRateOutbound
Auto Trait Implementations§
impl Freeze for RateLimit
impl RefUnwindSafe for RateLimit
impl Send for RateLimit
impl Sync for RateLimit
impl Unpin for RateLimit
impl UnwindSafe for RateLimit
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