Struct aws_sdk_connectcases::types::EventIncludedData
source · #[non_exhaustive]pub struct EventIncludedData {
pub case_data: Option<CaseEventIncludedData>,
pub related_item_data: Option<RelatedItemEventIncludedData>,
}
Expand description
Details of what case and related item data is published through the case event stream.
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.case_data: Option<CaseEventIncludedData>
Details of what case data is published through the case event stream.
Details of what related item data is published through the case event stream.
Implementations§
source§impl EventIncludedData
impl EventIncludedData
sourcepub fn case_data(&self) -> Option<&CaseEventIncludedData>
pub fn case_data(&self) -> Option<&CaseEventIncludedData>
Details of what case data is published through the case event stream.
Details of what related item data is published through the case event stream.
source§impl EventIncludedData
impl EventIncludedData
sourcepub fn builder() -> EventIncludedDataBuilder
pub fn builder() -> EventIncludedDataBuilder
Creates a new builder-style object to manufacture EventIncludedData
.
Trait Implementations§
source§impl Clone for EventIncludedData
impl Clone for EventIncludedData
source§fn clone(&self) -> EventIncludedData
fn clone(&self) -> EventIncludedData
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 EventIncludedData
impl Debug for EventIncludedData
source§impl PartialEq for EventIncludedData
impl PartialEq for EventIncludedData
source§fn eq(&self, other: &EventIncludedData) -> bool
fn eq(&self, other: &EventIncludedData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EventIncludedData
Auto Trait Implementations§
impl RefUnwindSafe for EventIncludedData
impl Send for EventIncludedData
impl Sync for EventIncludedData
impl Unpin for EventIncludedData
impl UnwindSafe for EventIncludedData
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