Struct aws_sdk_ec2::model::PublicIpv4PoolRange
source · [−]#[non_exhaustive]pub struct PublicIpv4PoolRange { /* private fields */ }
Expand description
Describes an address range of an IPv4 address pool.
Implementations
sourceimpl PublicIpv4PoolRange
impl PublicIpv4PoolRange
sourcepub fn first_address(&self) -> Option<&str>
pub fn first_address(&self) -> Option<&str>
The first IP address in the range.
sourcepub fn last_address(&self) -> Option<&str>
pub fn last_address(&self) -> Option<&str>
The last IP address in the range.
sourcepub fn address_count(&self) -> Option<i32>
pub fn address_count(&self) -> Option<i32>
The number of addresses in the range.
sourcepub fn available_address_count(&self) -> Option<i32>
pub fn available_address_count(&self) -> Option<i32>
The number of available addresses in the range.
sourceimpl PublicIpv4PoolRange
impl PublicIpv4PoolRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PublicIpv4PoolRange
.
Trait Implementations
sourceimpl Clone for PublicIpv4PoolRange
impl Clone for PublicIpv4PoolRange
sourcefn clone(&self) -> PublicIpv4PoolRange
fn clone(&self) -> PublicIpv4PoolRange
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 Debug for PublicIpv4PoolRange
impl Debug for PublicIpv4PoolRange
sourceimpl PartialEq<PublicIpv4PoolRange> for PublicIpv4PoolRange
impl PartialEq<PublicIpv4PoolRange> for PublicIpv4PoolRange
sourcefn eq(&self, other: &PublicIpv4PoolRange) -> bool
fn eq(&self, other: &PublicIpv4PoolRange) -> bool
impl StructuralPartialEq for PublicIpv4PoolRange
Auto Trait Implementations
impl RefUnwindSafe for PublicIpv4PoolRange
impl Send for PublicIpv4PoolRange
impl Sync for PublicIpv4PoolRange
impl Unpin for PublicIpv4PoolRange
impl UnwindSafe for PublicIpv4PoolRange
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