Struct aws_sdk_sesv2::types::EventDetails
source · #[non_exhaustive]pub struct EventDetails {
pub bounce: Option<Bounce>,
pub complaint: Option<Complaint>,
}Expand description
Contains a Bounce object if the event type is BOUNCE. Contains a Complaint object if the event type is COMPLAINT.
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.bounce: Option<Bounce>Information about a Bounce event.
complaint: Option<Complaint>Information about a Complaint event.
Implementations§
source§impl EventDetails
impl EventDetails
source§impl EventDetails
impl EventDetails
sourcepub fn builder() -> EventDetailsBuilder
pub fn builder() -> EventDetailsBuilder
Creates a new builder-style object to manufacture EventDetails.
Trait Implementations§
source§impl Clone for EventDetails
impl Clone for EventDetails
source§fn clone(&self) -> EventDetails
fn clone(&self) -> EventDetails
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 EventDetails
impl Debug for EventDetails
source§impl PartialEq for EventDetails
impl PartialEq for EventDetails
source§fn eq(&self, other: &EventDetails) -> bool
fn eq(&self, other: &EventDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EventDetails
Auto Trait Implementations§
impl RefUnwindSafe for EventDetails
impl Send for EventDetails
impl Sync for EventDetails
impl Unpin for EventDetails
impl UnwindSafe for EventDetails
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.