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