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