Struct gapi_grpc::google::cloud::contactcenterinsights::v1::analysis_result::CallAnalysisMetadata[][src]

pub struct CallAnalysisMetadata {
    pub annotations: Vec<CallAnnotation>,
    pub entities: HashMap<String, Entity>,
    pub sentiments: Vec<ConversationLevelSentiment>,
    pub intents: HashMap<String, Intent>,
    pub phrase_matchers: HashMap<String, PhraseMatchData>,
    pub issue_model_result: Option<IssueModelResult>,
}

Call-specific metadata created during analysis.

Fields

annotations: Vec<CallAnnotation>

A list of call annotations that apply to this call.

entities: HashMap<String, Entity>

All the entities in the call.

sentiments: Vec<ConversationLevelSentiment>

Overall conversation-level sentiment for each channel of the call.

intents: HashMap<String, Intent>

All the matched intents in the call.

phrase_matchers: HashMap<String, PhraseMatchData>

All the matched phrase matchers in the call.

issue_model_result: Option<IssueModelResult>

Overall conversation-level issue modeling result.

Trait Implementations

impl Clone for CallAnalysisMetadata[src]

impl Debug for CallAnalysisMetadata[src]

impl Default for CallAnalysisMetadata[src]

impl Message for CallAnalysisMetadata[src]

impl PartialEq<CallAnalysisMetadata> for CallAnalysisMetadata[src]

impl StructuralPartialEq for CallAnalysisMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for CallAnalysisMetadata

impl Send for CallAnalysisMetadata

impl Sync for CallAnalysisMetadata

impl Unpin for CallAnalysisMetadata

impl UnwindSafe for CallAnalysisMetadata

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]