#[non_exhaustive]pub struct NetworkInterfacePrivateIpAddress { /* private fields */ }
Expand description
Describes the private IPv4 address of a network interface.
Implementations
sourceimpl NetworkInterfacePrivateIpAddress
impl NetworkInterfacePrivateIpAddress
sourcepub fn association(&self) -> Option<&NetworkInterfaceAssociation>
pub fn association(&self) -> Option<&NetworkInterfaceAssociation>
The association information for an Elastic IP address (IPv4) associated with the network interface.
sourcepub fn primary(&self) -> Option<bool>
pub fn primary(&self) -> Option<bool>
Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.
sourcepub fn private_dns_name(&self) -> Option<&str>
pub fn private_dns_name(&self) -> Option<&str>
The private DNS name.
sourcepub fn private_ip_address(&self) -> Option<&str>
pub fn private_ip_address(&self) -> Option<&str>
The private IPv4 address.
sourceimpl NetworkInterfacePrivateIpAddress
impl NetworkInterfacePrivateIpAddress
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInterfacePrivateIpAddress
.
Trait Implementations
sourceimpl Clone for NetworkInterfacePrivateIpAddress
impl Clone for NetworkInterfacePrivateIpAddress
sourcefn clone(&self) -> NetworkInterfacePrivateIpAddress
fn clone(&self) -> NetworkInterfacePrivateIpAddress
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<NetworkInterfacePrivateIpAddress> for NetworkInterfacePrivateIpAddress
impl PartialEq<NetworkInterfacePrivateIpAddress> for NetworkInterfacePrivateIpAddress
sourcefn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
fn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
impl StructuralPartialEq for NetworkInterfacePrivateIpAddress
Auto Trait Implementations
impl RefUnwindSafe for NetworkInterfacePrivateIpAddress
impl Send for NetworkInterfacePrivateIpAddress
impl Sync for NetworkInterfacePrivateIpAddress
impl Unpin for NetworkInterfacePrivateIpAddress
impl UnwindSafe for NetworkInterfacePrivateIpAddress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more