Struct iroh_relay::server::ClientConnRateLimit
source · pub struct ClientConnRateLimit {
pub bytes_per_second: NonZeroU32,
pub max_burst_bytes: Option<NonZeroU32>,
}
Available on crate feature
server
only.Expand description
Per-client rate limit configuration.
Fields§
§bytes_per_second: NonZeroU32
Max number of bytes per second to read from the client connection.
max_burst_bytes: Option<NonZeroU32>
Max number of bytes to read in a single burst.
Trait Implementations§
source§impl Clone for ClientConnRateLimit
impl Clone for ClientConnRateLimit
source§fn clone(&self) -> ClientConnRateLimit
fn clone(&self) -> ClientConnRateLimit
Returns a copy 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 ClientConnRateLimit
impl Debug for ClientConnRateLimit
impl Copy for ClientConnRateLimit
Auto Trait Implementations§
impl Freeze for ClientConnRateLimit
impl RefUnwindSafe for ClientConnRateLimit
impl Send for ClientConnRateLimit
impl Sync for ClientConnRateLimit
impl Unpin for ClientConnRateLimit
impl UnwindSafe for ClientConnRateLimit
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