[][src]Struct rusoto_ec2::NetworkInfo

pub struct NetworkInfo {
    pub efa_supported: Option<bool>,
    pub ena_support: Option<String>,
    pub ipv_4_addresses_per_interface: Option<i64>,
    pub ipv_6_addresses_per_interface: Option<i64>,
    pub ipv_6_supported: Option<bool>,
    pub maximum_network_interfaces: Option<i64>,
    pub network_performance: Option<String>,
}

Describes the networking features of the instance type.

Fields

efa_supported: Option<bool>

Indicates whether Elastic Fabric Adapter (EFA) is supported.

ena_support: Option<String>

Indicates whether Elastic Network Adapter (ENA) is supported.

ipv_4_addresses_per_interface: Option<i64>

The maximum number of IPv4 addresses per network interface.

ipv_6_addresses_per_interface: Option<i64>

The maximum number of IPv6 addresses per network interface.

ipv_6_supported: Option<bool>

Indicates whether IPv6 is supported.

maximum_network_interfaces: Option<i64>

The maximum number of network interfaces for the instance type.

network_performance: Option<String>

Describes the network performance.

Trait Implementations

impl Clone for NetworkInfo[src]

impl Debug for NetworkInfo[src]

impl Default for NetworkInfo[src]

impl PartialEq<NetworkInfo> for NetworkInfo[src]

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