#[non_exhaustive]pub struct SearchRelatedItemsResponseItem { /* private fields */ }
Expand description
A list of items that represent RelatedItems.
Implementations
sourceimpl SearchRelatedItemsResponseItem
impl SearchRelatedItemsResponseItem
Unique identifier of a related item.
sourcepub fn type(&self) -> Option<&RelatedItemType>
pub fn type(&self) -> Option<&RelatedItemType>
Type of a related item.
sourcepub fn association_time(&self) -> Option<&DateTime>
pub fn association_time(&self) -> Option<&DateTime>
Time at which a related item was associated with a case.
sourcepub fn content(&self) -> Option<&RelatedItemContent>
pub fn content(&self) -> Option<&RelatedItemContent>
Represents the content of a particular type of related item.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
sourceimpl SearchRelatedItemsResponseItem
impl SearchRelatedItemsResponseItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchRelatedItemsResponseItem
.
Trait Implementations
sourceimpl Clone for SearchRelatedItemsResponseItem
impl Clone for SearchRelatedItemsResponseItem
sourcefn clone(&self) -> SearchRelatedItemsResponseItem
fn clone(&self) -> SearchRelatedItemsResponseItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<SearchRelatedItemsResponseItem> for SearchRelatedItemsResponseItem
impl PartialEq<SearchRelatedItemsResponseItem> for SearchRelatedItemsResponseItem
sourcefn eq(&self, other: &SearchRelatedItemsResponseItem) -> bool
fn eq(&self, other: &SearchRelatedItemsResponseItem) -> bool
impl StructuralPartialEq for SearchRelatedItemsResponseItem
Auto Trait Implementations
impl RefUnwindSafe for SearchRelatedItemsResponseItem
impl Send for SearchRelatedItemsResponseItem
impl Sync for SearchRelatedItemsResponseItem
impl Unpin for SearchRelatedItemsResponseItem
impl UnwindSafe for SearchRelatedItemsResponseItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more