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