Struct google_language1::AnalyzeEntitySentimentResponse[][src]

pub struct AnalyzeEntitySentimentResponse {
    pub entities: Option<Vec<Entity>>,
    pub language: Option<String>,
}

The entity-level sentiment analysis response message.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The recognized entities in the input document with associated sentiments.

The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language. See Document.language field for more details.

Trait Implementations

impl Default for AnalyzeEntitySentimentResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for AnalyzeEntitySentimentResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AnalyzeEntitySentimentResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for AnalyzeEntitySentimentResponse
[src]

Auto Trait Implementations