Struct iroh_relay::server::Limits
source · pub struct Limits {
pub accept_conn_limit: Option<f64>,
pub accept_conn_burst: Option<usize>,
pub client_rx: Option<ClientConnRateLimit>,
}
Available on crate feature
server
only.Expand description
Rate limits.
Fields§
§accept_conn_limit: Option<f64>
Rate limit for accepting new connection. Unlimited if not set.
accept_conn_burst: Option<usize>
Burst limit for accepting new connection. Unlimited if not set.
client_rx: Option<ClientConnRateLimit>
Rate limits for incoming traffic from a client connection.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnwindSafe for Limits
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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