Struct aws_sdk_workmail::operation::put_inbound_dmarc_settings::PutInboundDmarcSettingsInput
source · #[non_exhaustive]pub struct PutInboundDmarcSettingsInput {
pub organization_id: Option<String>,
pub enforced: Option<bool>,
}
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.organization_id: Option<String>
The ID of the organization that you are applying the DMARC policy to.
enforced: Option<bool>
Enforces or suspends a policy after it's applied.
Implementations§
source§impl PutInboundDmarcSettingsInput
impl PutInboundDmarcSettingsInput
sourcepub fn builder() -> PutInboundDmarcSettingsInputBuilder
pub fn builder() -> PutInboundDmarcSettingsInputBuilder
Creates a new builder-style object to manufacture PutInboundDmarcSettingsInput
.
Trait Implementations§
source§impl Clone for PutInboundDmarcSettingsInput
impl Clone for PutInboundDmarcSettingsInput
source§fn clone(&self) -> PutInboundDmarcSettingsInput
fn clone(&self) -> PutInboundDmarcSettingsInput
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 PutInboundDmarcSettingsInput
impl Debug for PutInboundDmarcSettingsInput
source§impl PartialEq<PutInboundDmarcSettingsInput> for PutInboundDmarcSettingsInput
impl PartialEq<PutInboundDmarcSettingsInput> for PutInboundDmarcSettingsInput
source§fn eq(&self, other: &PutInboundDmarcSettingsInput) -> bool
fn eq(&self, other: &PutInboundDmarcSettingsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutInboundDmarcSettingsInput
Auto Trait Implementations§
impl RefUnwindSafe for PutInboundDmarcSettingsInput
impl Send for PutInboundDmarcSettingsInput
impl Sync for PutInboundDmarcSettingsInput
impl Unpin for PutInboundDmarcSettingsInput
impl UnwindSafe for PutInboundDmarcSettingsInput
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