#[non_exhaustive]pub struct UpdateAccountOutput {
pub account: Option<Account>,
/* 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.account: Option<Account>The updated Amazon Chime account details.
Implementations§
source§impl UpdateAccountOutput
impl UpdateAccountOutput
sourcepub fn builder() -> UpdateAccountOutputBuilder
pub fn builder() -> UpdateAccountOutputBuilder
Creates a new builder-style object to manufacture UpdateAccountOutput.
Trait Implementations§
source§impl Clone for UpdateAccountOutput
impl Clone for UpdateAccountOutput
source§fn clone(&self) -> UpdateAccountOutput
fn clone(&self) -> UpdateAccountOutput
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 UpdateAccountOutput
impl Debug for UpdateAccountOutput
source§impl PartialEq for UpdateAccountOutput
impl PartialEq for UpdateAccountOutput
source§fn eq(&self, other: &UpdateAccountOutput) -> bool
fn eq(&self, other: &UpdateAccountOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateAccountOutput
impl RequestId for UpdateAccountOutput
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 UpdateAccountOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAccountOutput
impl Send for UpdateAccountOutput
impl Sync for UpdateAccountOutput
impl Unpin for UpdateAccountOutput
impl UnwindSafe for UpdateAccountOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.