pub struct PrivateIpAddressSpecification {
pub primary: Option<bool>,
pub private_ip_address: Option<String>,
}Expand description
Describes a secondary private IPv4 address for a network interface.
Fields§
§primary: Option<bool>Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.
private_ip_address: Option<String>The private IPv4 addresses.
Trait Implementations§
Source§impl Clone for PrivateIpAddressSpecification
impl Clone for PrivateIpAddressSpecification
Source§fn clone(&self) -> PrivateIpAddressSpecification
fn clone(&self) -> PrivateIpAddressSpecification
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 PrivateIpAddressSpecification
impl Default for PrivateIpAddressSpecification
Source§fn default() -> PrivateIpAddressSpecification
fn default() -> PrivateIpAddressSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for PrivateIpAddressSpecification
impl PartialEq for PrivateIpAddressSpecification
Source§fn eq(&self, other: &PrivateIpAddressSpecification) -> bool
fn eq(&self, other: &PrivateIpAddressSpecification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateIpAddressSpecification
Auto Trait Implementations§
impl Freeze for PrivateIpAddressSpecification
impl RefUnwindSafe for PrivateIpAddressSpecification
impl Send for PrivateIpAddressSpecification
impl Sync for PrivateIpAddressSpecification
impl Unpin for PrivateIpAddressSpecification
impl UnwindSafe for PrivateIpAddressSpecification
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