pub struct DescribeNatGatewaysResult {
pub nat_gateways: Option<Vec<NatGateway>>,
pub next_token: Option<String>,
}Fields§
§nat_gateways: Option<Vec<NatGateway>>Information about the NAT gateways.
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.
Trait Implementations§
Source§impl Clone for DescribeNatGatewaysResult
impl Clone for DescribeNatGatewaysResult
Source§fn clone(&self) -> DescribeNatGatewaysResult
fn clone(&self) -> DescribeNatGatewaysResult
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 Debug for DescribeNatGatewaysResult
impl Debug for DescribeNatGatewaysResult
Source§impl Default for DescribeNatGatewaysResult
impl Default for DescribeNatGatewaysResult
Source§fn default() -> DescribeNatGatewaysResult
fn default() -> DescribeNatGatewaysResult
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeNatGatewaysResult
Auto Trait Implementations§
impl Freeze for DescribeNatGatewaysResult
impl RefUnwindSafe for DescribeNatGatewaysResult
impl Send for DescribeNatGatewaysResult
impl Sync for DescribeNatGatewaysResult
impl Unpin for DescribeNatGatewaysResult
impl UnwindSafe for DescribeNatGatewaysResult
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