#[non_exhaustive]pub struct CreateDefaultSubnetOutput {
pub subnet: Option<Subnet>,
/* 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.subnet: Option<Subnet>
Information about the subnet.
Implementations§
source§impl CreateDefaultSubnetOutput
impl CreateDefaultSubnetOutput
sourcepub fn builder() -> CreateDefaultSubnetOutputBuilder
pub fn builder() -> CreateDefaultSubnetOutputBuilder
Creates a new builder-style object to manufacture CreateDefaultSubnetOutput
.
Trait Implementations§
source§impl Clone for CreateDefaultSubnetOutput
impl Clone for CreateDefaultSubnetOutput
source§fn clone(&self) -> CreateDefaultSubnetOutput
fn clone(&self) -> CreateDefaultSubnetOutput
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 CreateDefaultSubnetOutput
impl Debug for CreateDefaultSubnetOutput
source§impl PartialEq<CreateDefaultSubnetOutput> for CreateDefaultSubnetOutput
impl PartialEq<CreateDefaultSubnetOutput> for CreateDefaultSubnetOutput
source§fn eq(&self, other: &CreateDefaultSubnetOutput) -> bool
fn eq(&self, other: &CreateDefaultSubnetOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateDefaultSubnetOutput
impl RequestId for CreateDefaultSubnetOutput
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 CreateDefaultSubnetOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDefaultSubnetOutput
impl Send for CreateDefaultSubnetOutput
impl Sync for CreateDefaultSubnetOutput
impl Unpin for CreateDefaultSubnetOutput
impl UnwindSafe for CreateDefaultSubnetOutput
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