[][src]Struct rusoto_discovery::NeighborConnectionDetail

pub struct NeighborConnectionDetail {
    pub connections_count: i64,
    pub destination_port: Option<i64>,
    pub destination_server_id: String,
    pub source_server_id: String,
    pub transport_protocol: Option<String>,
}

Details about neighboring servers.

Fields

connections_count: i64

The number of open network connections with the neighboring server.

destination_port: Option<i64>

The destination network port for the connection.

destination_server_id: String

The ID of the server that accepted the network connection.

source_server_id: String

The ID of the server that opened the network connection.

transport_protocol: Option<String>

The network protocol used for the connection.

Trait Implementations

impl Clone for NeighborConnectionDetail[src]

impl Debug for NeighborConnectionDetail[src]

impl Default for NeighborConnectionDetail[src]

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

impl PartialEq<NeighborConnectionDetail> for NeighborConnectionDetail[src]

impl StructuralPartialEq for NeighborConnectionDetail[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> 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.