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