pub struct NetworkInterfacePrivateIpAddress {
pub association: Option<NetworkInterfaceAssociation>,
pub primary: Option<bool>,
pub private_dns_name: Option<String>,
pub private_ip_address: Option<String>,
}Expand description
Describes the private IPv4 address of a network interface.
Fields§
§association: Option<NetworkInterfaceAssociation>The association information for an Elastic IP address (IPv4) associated with the network interface.
primary: Option<bool>Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.
private_dns_name: Option<String>The private DNS name.
private_ip_address: Option<String>The private IPv4 address.
Trait Implementations§
Source§impl Clone for NetworkInterfacePrivateIpAddress
impl Clone for NetworkInterfacePrivateIpAddress
Source§fn clone(&self) -> NetworkInterfacePrivateIpAddress
fn clone(&self) -> NetworkInterfacePrivateIpAddress
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 NetworkInterfacePrivateIpAddress
impl Default for NetworkInterfacePrivateIpAddress
Source§fn default() -> NetworkInterfacePrivateIpAddress
fn default() -> NetworkInterfacePrivateIpAddress
Returns the “default value” for a type. Read more
Source§impl PartialEq for NetworkInterfacePrivateIpAddress
impl PartialEq for NetworkInterfacePrivateIpAddress
Source§fn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
fn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkInterfacePrivateIpAddress
Auto Trait Implementations§
impl Freeze for NetworkInterfacePrivateIpAddress
impl RefUnwindSafe for NetworkInterfacePrivateIpAddress
impl Send for NetworkInterfacePrivateIpAddress
impl Sync for NetworkInterfacePrivateIpAddress
impl Unpin for NetworkInterfacePrivateIpAddress
impl UnwindSafe for NetworkInterfacePrivateIpAddress
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