Struct libp2p_relay::Config
source · pub struct Config {
pub max_reservations: usize,
pub max_reservations_per_peer: usize,
pub reservation_duration: Duration,
pub reservation_rate_limiters: Vec<Box<dyn RateLimiter>>,
pub max_circuits: usize,
pub max_circuits_per_peer: usize,
pub max_circuit_duration: Duration,
pub max_circuit_bytes: u64,
pub circuit_src_rate_limiters: Vec<Box<dyn RateLimiter>>,
}
Expand description
Configuration for the relay Behaviour
.
§Panics
Config::max_circuit_duration
may not exceed u32::MAX
.
Fields§
§max_reservations: usize
§max_reservations_per_peer: usize
§reservation_duration: Duration
§reservation_rate_limiters: Vec<Box<dyn RateLimiter>>
§max_circuits: usize
§max_circuits_per_peer: usize
§max_circuit_duration: Duration
§max_circuit_bytes: u64
§circuit_src_rate_limiters: Vec<Box<dyn RateLimiter>>
Implementations§
source§impl Config
impl Config
pub fn reservation_rate_per_peer( self, limit: NonZeroU32, interval: Duration, ) -> Self
pub fn circuit_src_per_peer(self, limit: NonZeroU32, interval: Duration) -> Self
pub fn reservation_rate_per_ip( self, limit: NonZeroU32, interval: Duration, ) -> Self
pub fn circuit_src_per_ip(self, limit: NonZeroU32, interval: Duration) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl !RefUnwindSafe for Config
impl Send for Config
impl !Sync for Config
impl Unpin for Config
impl !UnwindSafe for Config
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more