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