Struct hangouts_rs::raw::ConversationDetails[][src]

pub struct ConversationDetails {
    pub id: ConversationId,
    pub typ: ConversationType,
    pub name: Option<String>,
    pub self_conversation_state: SelfConversationState,
    pub read_state: Vec<ReadState>,
    pub has_active_hangout: bool,
    pub otr_status: String,
    pub otr_toggle: String,
    pub current_participant: Vec<ParticipantId>,
    pub participant_data: Vec<ParticipantData>,
    pub fork_on_external_invite: bool,
    pub network_type: Vec<String>,
    pub force_history_state: String,
    pub group_link_sharing_status: LinkSharingStatus,
}

Fields

id: ConversationIdtyp: ConversationTypename: Option<String>self_conversation_state: SelfConversationStateread_state: Vec<ReadState>has_active_hangout: boolotr_status: Stringotr_toggle: Stringcurrent_participant: Vec<ParticipantId>participant_data: Vec<ParticipantData>fork_on_external_invite: boolnetwork_type: Vec<String>force_history_state: Stringgroup_link_sharing_status: LinkSharingStatus

Trait Implementations

impl Clone for ConversationDetails[src]

impl Debug for ConversationDetails[src]

impl PartialEq<ConversationDetails> for ConversationDetails[src]

impl StructuralPartialEq for ConversationDetails[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> From<T> for T[src]

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

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.