Struct google_dialogflow2::api::GoogleCloudDialogflowV2ArticleAnswer[][src]

pub struct GoogleCloudDialogflowV2ArticleAnswer {
    pub answer_record: Option<String>,
    pub confidence: Option<f32>,
    pub metadata: Option<HashMap<String, String>>,
    pub snippets: Option<Vec<String>>,
    pub title: Option<String>,
    pub uri: Option<String>,
}

Represents article answer.

This type is not used in any activity, and only used as part of another schema.

Fields

answer_record: Option<String>

The name of answer record, in the format of "projects//locations//answerRecords/"

confidence: Option<f32>

Article match confidence. The system's confidence score that this article is a good match for this conversation, as a value from 0.0 (completely uncertain) to 1.0 (completely certain).

metadata: Option<HashMap<String, String>>

A map that contains metadata about the answer and the document from which it originates.

snippets: Option<Vec<String>>

Article snippets.

title: Option<String>

The article title.

uri: Option<String>

The article URI.

Trait Implementations

impl Clone for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Debug for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Default for GoogleCloudDialogflowV2ArticleAnswer[src]

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

impl Part for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Serialize for GoogleCloudDialogflowV2ArticleAnswer[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Send for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Sync for GoogleCloudDialogflowV2ArticleAnswer[src]

impl Unpin for GoogleCloudDialogflowV2ArticleAnswer[src]

impl UnwindSafe for GoogleCloudDialogflowV2ArticleAnswer[src]

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, 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.