#[non_exhaustive]pub struct DescribeRouteTablesOutput {
pub route_tables: Option<Vec<RouteTable>>,
pub next_token: Option<String>,
/* private fields */
}
Expand description
Contains the output of DescribeRouteTables.
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.route_tables: Option<Vec<RouteTable>>
Information about one or more route tables.
next_token: Option<String>
The token to include in another request to get the next page of items. This value is null
when there are no more items to return.
Implementations§
source§impl DescribeRouteTablesOutput
impl DescribeRouteTablesOutput
sourcepub fn route_tables(&self) -> Option<&[RouteTable]>
pub fn route_tables(&self) -> Option<&[RouteTable]>
Information about one or more route tables.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to include in another request to get the next page of items. This value is null
when there are no more items to return.
source§impl DescribeRouteTablesOutput
impl DescribeRouteTablesOutput
sourcepub fn builder() -> DescribeRouteTablesOutputBuilder
pub fn builder() -> DescribeRouteTablesOutputBuilder
Creates a new builder-style object to manufacture DescribeRouteTablesOutput
.
Trait Implementations§
source§impl Clone for DescribeRouteTablesOutput
impl Clone for DescribeRouteTablesOutput
source§fn clone(&self) -> DescribeRouteTablesOutput
fn clone(&self) -> DescribeRouteTablesOutput
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 DescribeRouteTablesOutput
impl Debug for DescribeRouteTablesOutput
source§impl PartialEq<DescribeRouteTablesOutput> for DescribeRouteTablesOutput
impl PartialEq<DescribeRouteTablesOutput> for DescribeRouteTablesOutput
source§fn eq(&self, other: &DescribeRouteTablesOutput) -> bool
fn eq(&self, other: &DescribeRouteTablesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeRouteTablesOutput
impl RequestId for DescribeRouteTablesOutput
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 DescribeRouteTablesOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeRouteTablesOutput
impl Send for DescribeRouteTablesOutput
impl Sync for DescribeRouteTablesOutput
impl Unpin for DescribeRouteTablesOutput
impl UnwindSafe for DescribeRouteTablesOutput
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