pub struct DescribeNetworkInterfaceAttributeResult {
pub attachment: Option<NetworkInterfaceAttachment>,
pub description: Option<AttributeValue>,
pub groups: Option<Vec<GroupIdentifier>>,
pub network_interface_id: Option<String>,
pub source_dest_check: Option<AttributeBooleanValue>,
}Expand description
Contains the output of DescribeNetworkInterfaceAttribute.
Fields§
§attachment: Option<NetworkInterfaceAttachment>The attachment (if any) of the network interface.
description: Option<AttributeValue>The description of the network interface.
groups: Option<Vec<GroupIdentifier>>The security groups associated with the network interface.
network_interface_id: Option<String>The ID of the network interface.
source_dest_check: Option<AttributeBooleanValue>Indicates whether source/destination checking is enabled.
Trait Implementations§
Source§impl Clone for DescribeNetworkInterfaceAttributeResult
impl Clone for DescribeNetworkInterfaceAttributeResult
Source§fn clone(&self) -> DescribeNetworkInterfaceAttributeResult
fn clone(&self) -> DescribeNetworkInterfaceAttributeResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeNetworkInterfaceAttributeResult
impl Default for DescribeNetworkInterfaceAttributeResult
Source§fn default() -> DescribeNetworkInterfaceAttributeResult
fn default() -> DescribeNetworkInterfaceAttributeResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeNetworkInterfaceAttributeResult
impl PartialEq for DescribeNetworkInterfaceAttributeResult
Source§fn eq(&self, other: &DescribeNetworkInterfaceAttributeResult) -> bool
fn eq(&self, other: &DescribeNetworkInterfaceAttributeResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeNetworkInterfaceAttributeResult
Auto Trait Implementations§
impl Freeze for DescribeNetworkInterfaceAttributeResult
impl RefUnwindSafe for DescribeNetworkInterfaceAttributeResult
impl Send for DescribeNetworkInterfaceAttributeResult
impl Sync for DescribeNetworkInterfaceAttributeResult
impl Unpin for DescribeNetworkInterfaceAttributeResult
impl UnwindSafe for DescribeNetworkInterfaceAttributeResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more