Struct aws_sdk_apigatewayv2::operation::get_routes::GetRoutesOutput
source · #[non_exhaustive]pub struct GetRoutesOutput {
pub items: Option<Vec<Route>>,
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.items: Option<Vec<Route>>
The elements from this collection.
next_token: Option<String>
The next page of elements from this collection. Not valid for the last element of the collection.
Implementations§
source§impl GetRoutesOutput
impl GetRoutesOutput
sourcepub fn builder() -> GetRoutesOutputBuilder
pub fn builder() -> GetRoutesOutputBuilder
Creates a new builder-style object to manufacture GetRoutesOutput
.
Trait Implementations§
source§impl Clone for GetRoutesOutput
impl Clone for GetRoutesOutput
source§fn clone(&self) -> GetRoutesOutput
fn clone(&self) -> GetRoutesOutput
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 GetRoutesOutput
impl Debug for GetRoutesOutput
source§impl PartialEq<GetRoutesOutput> for GetRoutesOutput
impl PartialEq<GetRoutesOutput> for GetRoutesOutput
source§fn eq(&self, other: &GetRoutesOutput) -> bool
fn eq(&self, other: &GetRoutesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRoutesOutput
impl RequestId for GetRoutesOutput
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 GetRoutesOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRoutesOutput
impl Send for GetRoutesOutput
impl Sync for GetRoutesOutput
impl Unpin for GetRoutesOutput
impl UnwindSafe for GetRoutesOutput
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