[][src]Struct rusoto_ec2::InstanceNetworkInterfaceAttachment

pub struct InstanceNetworkInterfaceAttachment {
    pub attach_time: Option<String>,
    pub attachment_id: Option<String>,
    pub delete_on_termination: Option<bool>,
    pub device_index: Option<i64>,
    pub status: Option<String>,
}

Describes a network interface attachment.

Fields

attach_time: Option<String>

The time stamp when the attachment initiated.

attachment_id: Option<String>

The ID of the network interface attachment.

delete_on_termination: Option<bool>

Indicates whether the network interface is deleted when the instance is terminated.

device_index: Option<i64>

The index of the device on the instance for the network interface attachment.

status: Option<String>

The attachment state.

Trait Implementations

impl PartialEq<InstanceNetworkInterfaceAttachment> for InstanceNetworkInterfaceAttachment[src]

impl Default for InstanceNetworkInterfaceAttachment[src]

impl Clone for InstanceNetworkInterfaceAttachment[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InstanceNetworkInterfaceAttachment[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self