#[non_exhaustive]pub struct VirtualGatewayHttpConnectionPool {
pub max_connections: i32,
pub max_pending_requests: Option<i32>,
}
Expand description
An object that represents a type of connection pool.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_connections: i32
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
max_pending_requests: Option<i32>
Number of overflowing requests after max_connections
Envoy will queue to upstream cluster.
Implementations§
source§impl VirtualGatewayHttpConnectionPool
impl VirtualGatewayHttpConnectionPool
sourcepub fn max_connections(&self) -> i32
pub fn max_connections(&self) -> i32
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
sourcepub fn max_pending_requests(&self) -> Option<i32>
pub fn max_pending_requests(&self) -> Option<i32>
Number of overflowing requests after max_connections
Envoy will queue to upstream cluster.
source§impl VirtualGatewayHttpConnectionPool
impl VirtualGatewayHttpConnectionPool
sourcepub fn builder() -> VirtualGatewayHttpConnectionPoolBuilder
pub fn builder() -> VirtualGatewayHttpConnectionPoolBuilder
Creates a new builder-style object to manufacture VirtualGatewayHttpConnectionPool
.
Trait Implementations§
source§impl Clone for VirtualGatewayHttpConnectionPool
impl Clone for VirtualGatewayHttpConnectionPool
source§fn clone(&self) -> VirtualGatewayHttpConnectionPool
fn clone(&self) -> VirtualGatewayHttpConnectionPool
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 PartialEq for VirtualGatewayHttpConnectionPool
impl PartialEq for VirtualGatewayHttpConnectionPool
source§fn eq(&self, other: &VirtualGatewayHttpConnectionPool) -> bool
fn eq(&self, other: &VirtualGatewayHttpConnectionPool) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualGatewayHttpConnectionPool
Auto Trait Implementations§
impl RefUnwindSafe for VirtualGatewayHttpConnectionPool
impl Send for VirtualGatewayHttpConnectionPool
impl Sync for VirtualGatewayHttpConnectionPool
impl Unpin for VirtualGatewayHttpConnectionPool
impl UnwindSafe for VirtualGatewayHttpConnectionPool
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>
Creates a shared type from an unshared type.