pub struct CreateNatGatewayResult {
pub client_token: Option<String>,
pub nat_gateway: Option<NatGateway>,
}Fields§
§client_token: Option<String>Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.
nat_gateway: Option<NatGateway>Information about the NAT gateway.
Trait Implementations§
Source§impl Clone for CreateNatGatewayResult
impl Clone for CreateNatGatewayResult
Source§fn clone(&self) -> CreateNatGatewayResult
fn clone(&self) -> CreateNatGatewayResult
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 CreateNatGatewayResult
impl Debug for CreateNatGatewayResult
Source§impl Default for CreateNatGatewayResult
impl Default for CreateNatGatewayResult
Source§fn default() -> CreateNatGatewayResult
fn default() -> CreateNatGatewayResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateNatGatewayResult
impl PartialEq for CreateNatGatewayResult
impl StructuralPartialEq for CreateNatGatewayResult
Auto Trait Implementations§
impl Freeze for CreateNatGatewayResult
impl RefUnwindSafe for CreateNatGatewayResult
impl Send for CreateNatGatewayResult
impl Sync for CreateNatGatewayResult
impl Unpin for CreateNatGatewayResult
impl UnwindSafe for CreateNatGatewayResult
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