pub struct RecentCaseCommunications {
pub communications: Option<Vec<Communication>>,
pub next_token: Option<String>,
}Expand description
The five most recent communications associated with the case.
Fields§
§communications: Option<Vec<Communication>>The five most recent communications associated with the case.
next_token: Option<String>A resumption point for pagination.
Trait Implementations§
Source§impl Clone for RecentCaseCommunications
impl Clone for RecentCaseCommunications
Source§fn clone(&self) -> RecentCaseCommunications
fn clone(&self) -> RecentCaseCommunications
Returns a duplicate 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 RecentCaseCommunications
impl Debug for RecentCaseCommunications
Source§impl Default for RecentCaseCommunications
impl Default for RecentCaseCommunications
Source§fn default() -> RecentCaseCommunications
fn default() -> RecentCaseCommunications
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecentCaseCommunications
impl<'de> Deserialize<'de> for RecentCaseCommunications
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RecentCaseCommunications
impl PartialEq for RecentCaseCommunications
impl StructuralPartialEq for RecentCaseCommunications
Auto Trait Implementations§
impl Freeze for RecentCaseCommunications
impl RefUnwindSafe for RecentCaseCommunications
impl Send for RecentCaseCommunications
impl Sync for RecentCaseCommunications
impl Unpin for RecentCaseCommunications
impl UnwindSafe for RecentCaseCommunications
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