pub struct SearchLocalGatewayRoutesResult {
pub next_token: Option<String>,
pub routes: Option<Vec<LocalGatewayRoute>>,
}Fields§
§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.
routes: Option<Vec<LocalGatewayRoute>>Information about the routes.
Trait Implementations§
Source§impl Clone for SearchLocalGatewayRoutesResult
impl Clone for SearchLocalGatewayRoutesResult
Source§fn clone(&self) -> SearchLocalGatewayRoutesResult
fn clone(&self) -> SearchLocalGatewayRoutesResult
Returns a duplicate 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 Default for SearchLocalGatewayRoutesResult
impl Default for SearchLocalGatewayRoutesResult
Source§fn default() -> SearchLocalGatewayRoutesResult
fn default() -> SearchLocalGatewayRoutesResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchLocalGatewayRoutesResult
impl PartialEq for SearchLocalGatewayRoutesResult
Source§fn eq(&self, other: &SearchLocalGatewayRoutesResult) -> bool
fn eq(&self, other: &SearchLocalGatewayRoutesResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchLocalGatewayRoutesResult
Auto Trait Implementations§
impl Freeze for SearchLocalGatewayRoutesResult
impl RefUnwindSafe for SearchLocalGatewayRoutesResult
impl Send for SearchLocalGatewayRoutesResult
impl Sync for SearchLocalGatewayRoutesResult
impl Unpin for SearchLocalGatewayRoutesResult
impl UnwindSafe for SearchLocalGatewayRoutesResult
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