#[non_exhaustive]pub struct CreateDefaultVpcOutput {
pub vpc: Option<Vpc>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.vpc: Option<Vpc>
Information about the VPC.
Implementations§
source§impl CreateDefaultVpcOutput
impl CreateDefaultVpcOutput
sourcepub fn builder() -> CreateDefaultVpcOutputBuilder
pub fn builder() -> CreateDefaultVpcOutputBuilder
Creates a new builder-style object to manufacture CreateDefaultVpcOutput
.
Trait Implementations§
source§impl Clone for CreateDefaultVpcOutput
impl Clone for CreateDefaultVpcOutput
source§fn clone(&self) -> CreateDefaultVpcOutput
fn clone(&self) -> CreateDefaultVpcOutput
Returns a copy 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 CreateDefaultVpcOutput
impl Debug for CreateDefaultVpcOutput
source§impl PartialEq<CreateDefaultVpcOutput> for CreateDefaultVpcOutput
impl PartialEq<CreateDefaultVpcOutput> for CreateDefaultVpcOutput
source§fn eq(&self, other: &CreateDefaultVpcOutput) -> bool
fn eq(&self, other: &CreateDefaultVpcOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateDefaultVpcOutput
impl RequestId for CreateDefaultVpcOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateDefaultVpcOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDefaultVpcOutput
impl Send for CreateDefaultVpcOutput
impl Sync for CreateDefaultVpcOutput
impl Unpin for CreateDefaultVpcOutput
impl UnwindSafe for CreateDefaultVpcOutput
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