#[non_exhaustive]pub struct DescribeVpcEndpointsOutput {
pub vpc_endpoints: Option<Vec<VpcEndpoint>>,
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.vpc_endpoints: Option<Vec<VpcEndpoint>>
Information about the endpoints.
next_token: Option<String>
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
Implementations§
source§impl DescribeVpcEndpointsOutput
impl DescribeVpcEndpointsOutput
sourcepub fn vpc_endpoints(&self) -> Option<&[VpcEndpoint]>
pub fn vpc_endpoints(&self) -> Option<&[VpcEndpoint]>
Information about the endpoints.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
source§impl DescribeVpcEndpointsOutput
impl DescribeVpcEndpointsOutput
sourcepub fn builder() -> DescribeVpcEndpointsOutputBuilder
pub fn builder() -> DescribeVpcEndpointsOutputBuilder
Creates a new builder-style object to manufacture DescribeVpcEndpointsOutput
.
Trait Implementations§
source§impl Clone for DescribeVpcEndpointsOutput
impl Clone for DescribeVpcEndpointsOutput
source§fn clone(&self) -> DescribeVpcEndpointsOutput
fn clone(&self) -> DescribeVpcEndpointsOutput
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 DescribeVpcEndpointsOutput
impl Debug for DescribeVpcEndpointsOutput
source§impl PartialEq<DescribeVpcEndpointsOutput> for DescribeVpcEndpointsOutput
impl PartialEq<DescribeVpcEndpointsOutput> for DescribeVpcEndpointsOutput
source§fn eq(&self, other: &DescribeVpcEndpointsOutput) -> bool
fn eq(&self, other: &DescribeVpcEndpointsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeVpcEndpointsOutput
impl RequestId for DescribeVpcEndpointsOutput
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 DescribeVpcEndpointsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeVpcEndpointsOutput
impl Send for DescribeVpcEndpointsOutput
impl Sync for DescribeVpcEndpointsOutput
impl Unpin for DescribeVpcEndpointsOutput
impl UnwindSafe for DescribeVpcEndpointsOutput
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