Struct google_language1::Entity[][src]

pub struct Entity {
    pub salience: Option<f32>,
    pub name: Option<String>,
    pub sentiment: Option<Sentiment>,
    pub mentions: Option<Vec<EntityMention>>,
    pub type_: Option<String>,
    pub metadata: Option<HashMap<String, String>>,
}

Represents a phrase in the text that is a known entity, such as a person, an organization, or location. The API associates information, such as salience and mentions, with entities.

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

Fields

The salience score associated with the entity in the [0, 1.0] range.

The salience score for an entity provides information about the importance or centrality of that entity to the entire document text. Scores closer to 0 are less salient, while scores closer to 1.0 are highly salient.

The representative name for the entity.

For calls to AnalyzeEntitySentiment or if AnnotateTextRequest.Features.extract_entity_sentiment is set to true, this field will contain the aggregate sentiment expressed for this entity in the provided document.

The mentions of this entity in the input document. The API currently supports proper noun mentions.

The entity type.

Metadata associated with the entity.

Currently, Wikipedia URLs and Knowledge Graph MIDs are provided, if available. The associated keys are "wikipedia_url" and "mid", respectively.

Trait Implementations

impl Default for Entity
[src]

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

impl Clone for Entity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Entity
[src]

Formats the value using the given formatter. Read more

impl Part for Entity
[src]

Auto Trait Implementations

impl Send for Entity

impl Sync for Entity