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