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