[][src]Struct rusoto_appmesh::VirtualNodeConnectionPool

pub struct VirtualNodeConnectionPool {
    pub grpc: Option<VirtualNodeGrpcConnectionPool>,
    pub http: Option<VirtualNodeHttpConnectionPool>,
    pub http_2: Option<VirtualNodeHttp2ConnectionPool>,
    pub tcp: Option<VirtualNodeTcpConnectionPool>,
}

An object that represents the type of virtual node connection pool.

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647.

Fields

grpc: Option<VirtualNodeGrpcConnectionPool>

An object that represents a type of connection pool.

http: Option<VirtualNodeHttpConnectionPool>

An object that represents a type of connection pool.

http_2: Option<VirtualNodeHttp2ConnectionPool>

An object that represents a type of connection pool.

tcp: Option<VirtualNodeTcpConnectionPool>

An object that represents a type of connection pool.

Trait Implementations

impl Clone for VirtualNodeConnectionPool[src]

impl Debug for VirtualNodeConnectionPool[src]

impl Default for VirtualNodeConnectionPool[src]

impl<'de> Deserialize<'de> for VirtualNodeConnectionPool[src]

impl PartialEq<VirtualNodeConnectionPool> for VirtualNodeConnectionPool[src]

impl Serialize for VirtualNodeConnectionPool[src]

impl StructuralPartialEq for VirtualNodeConnectionPool[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.