[][src]Struct rusoto_connectparticipant::Item

pub struct Item {
    pub absolute_time: Option<String>,
    pub content: Option<String>,
    pub content_type: Option<String>,
    pub display_name: Option<String>,
    pub id: Option<String>,
    pub participant_id: Option<String>,
    pub participant_role: Option<String>,
    pub type_: Option<String>,
}

An item - message or event - that has been sent.

Fields

absolute_time: Option<String>

The time when the message or event was sent.

It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

content: Option<String>

The content of the message or event.

content_type: Option<String>

The type of content of the item.

display_name: Option<String>

The chat display name of the sender.

id: Option<String>

The ID of the item.

participant_id: Option<String>

The ID of the sender in the session.

participant_role: Option<String>

The role of the sender. For example, is it a customer, agent, or system.

type_: Option<String>

Type of the item: message or event.

Trait Implementations

impl Clone for Item[src]

impl Debug for Item[src]

impl Default for Item[src]

impl<'de> Deserialize<'de> for Item[src]

impl PartialEq<Item> for Item[src]

impl StructuralPartialEq for Item[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.