Struct libp2p_core::connection::ConnectionLimits
source · [−]pub struct ConnectionLimits { /* private fields */ }
Expand description
The configurable connection limits.
By default no connection limits apply.
Implementations
sourceimpl ConnectionLimits
impl ConnectionLimits
sourcepub fn with_max_pending_incoming(self, limit: Option<u32>) -> Self
pub fn with_max_pending_incoming(self, limit: Option<u32>) -> Self
Configures the maximum number of concurrently incoming connections being established.
sourcepub fn with_max_pending_outgoing(self, limit: Option<u32>) -> Self
pub fn with_max_pending_outgoing(self, limit: Option<u32>) -> Self
Configures the maximum number of concurrently outgoing connections being established.
sourcepub fn with_max_established_incoming(self, limit: Option<u32>) -> Self
pub fn with_max_established_incoming(self, limit: Option<u32>) -> Self
Configures the maximum number of concurrent established inbound connections.
sourcepub fn with_max_established_outgoing(self, limit: Option<u32>) -> Self
pub fn with_max_established_outgoing(self, limit: Option<u32>) -> Self
Configures the maximum number of concurrent established outbound connections.
sourcepub fn with_max_established_per_peer(self, limit: Option<u32>) -> Self
pub fn with_max_established_per_peer(self, limit: Option<u32>) -> Self
Configures the maximum number of concurrent established connections per peer, regardless of direction (incoming or outgoing).
Trait Implementations
sourceimpl Clone for ConnectionLimits
impl Clone for ConnectionLimits
sourcefn clone(&self) -> ConnectionLimits
fn clone(&self) -> ConnectionLimits
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ConnectionLimits
impl Debug for ConnectionLimits
sourceimpl Default for ConnectionLimits
impl Default for ConnectionLimits
sourcefn default() -> ConnectionLimits
fn default() -> ConnectionLimits
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ConnectionLimits
impl Send for ConnectionLimits
impl Sync for ConnectionLimits
impl Unpin for ConnectionLimits
impl UnwindSafe for ConnectionLimits
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more