#[non_exhaustive]pub struct DescribeIpv6PoolsOutput {
pub ipv6_pools: Option<Vec<Ipv6Pool>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ipv6_pools: Option<Vec<Ipv6Pool>>
Information about the IPv6 address pools.
next_token: Option<String>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
Implementations§
source§impl DescribeIpv6PoolsOutput
impl DescribeIpv6PoolsOutput
sourcepub fn ipv6_pools(&self) -> Option<&[Ipv6Pool]>
pub fn ipv6_pools(&self) -> Option<&[Ipv6Pool]>
Information about the IPv6 address pools.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
source§impl DescribeIpv6PoolsOutput
impl DescribeIpv6PoolsOutput
sourcepub fn builder() -> DescribeIpv6PoolsOutputBuilder
pub fn builder() -> DescribeIpv6PoolsOutputBuilder
Creates a new builder-style object to manufacture DescribeIpv6PoolsOutput
.
Trait Implementations§
source§impl Clone for DescribeIpv6PoolsOutput
impl Clone for DescribeIpv6PoolsOutput
source§fn clone(&self) -> DescribeIpv6PoolsOutput
fn clone(&self) -> DescribeIpv6PoolsOutput
Returns a copy 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 DescribeIpv6PoolsOutput
impl Debug for DescribeIpv6PoolsOutput
source§impl PartialEq<DescribeIpv6PoolsOutput> for DescribeIpv6PoolsOutput
impl PartialEq<DescribeIpv6PoolsOutput> for DescribeIpv6PoolsOutput
source§fn eq(&self, other: &DescribeIpv6PoolsOutput) -> bool
fn eq(&self, other: &DescribeIpv6PoolsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeIpv6PoolsOutput
impl RequestId for DescribeIpv6PoolsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeIpv6PoolsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeIpv6PoolsOutput
impl Send for DescribeIpv6PoolsOutput
impl Sync for DescribeIpv6PoolsOutput
impl Unpin for DescribeIpv6PoolsOutput
impl UnwindSafe for DescribeIpv6PoolsOutput
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