Struct rusoto_discovery::NeighborConnectionDetail[][src]

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

The number of open network connections with the neighboring server.

The destination network port for the connection.

The ID of the server that accepted the network connection.

The ID of the server that opened the network connection.

The network protocol used for the connection.

Trait Implementations

impl Default for NeighborConnectionDetail
[src]

Returns the "default value" for a type. Read more

impl Debug for NeighborConnectionDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for NeighborConnectionDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NeighborConnectionDetail
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations