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