#[non_exhaustive]pub struct GetDevEndpointsOutput {
pub dev_endpoints: Option<Vec<DevEndpoint>>,
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.dev_endpoints: Option<Vec<DevEndpoint>>
A list of DevEndpoint
definitions.
next_token: Option<String>
A continuation token, if not all DevEndpoint
definitions have yet been returned.
Implementations§
source§impl GetDevEndpointsOutput
impl GetDevEndpointsOutput
sourcepub fn dev_endpoints(&self) -> Option<&[DevEndpoint]>
pub fn dev_endpoints(&self) -> Option<&[DevEndpoint]>
A list of DevEndpoint
definitions.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if not all DevEndpoint
definitions have yet been returned.
source§impl GetDevEndpointsOutput
impl GetDevEndpointsOutput
sourcepub fn builder() -> GetDevEndpointsOutputBuilder
pub fn builder() -> GetDevEndpointsOutputBuilder
Creates a new builder-style object to manufacture GetDevEndpointsOutput
.
Trait Implementations§
source§impl Clone for GetDevEndpointsOutput
impl Clone for GetDevEndpointsOutput
source§fn clone(&self) -> GetDevEndpointsOutput
fn clone(&self) -> GetDevEndpointsOutput
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 GetDevEndpointsOutput
impl Debug for GetDevEndpointsOutput
source§impl PartialEq for GetDevEndpointsOutput
impl PartialEq for GetDevEndpointsOutput
source§fn eq(&self, other: &GetDevEndpointsOutput) -> bool
fn eq(&self, other: &GetDevEndpointsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDevEndpointsOutput
impl RequestId for GetDevEndpointsOutput
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 GetDevEndpointsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDevEndpointsOutput
impl Send for GetDevEndpointsOutput
impl Sync for GetDevEndpointsOutput
impl Unpin for GetDevEndpointsOutput
impl UnwindSafe for GetDevEndpointsOutput
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