[][src]Struct google_language1_beta1::Entity

pub struct Entity {
    pub mentions: Option<Vec<EntityMention>>,
    pub metadata: Option<HashMap<String, String>>,
    pub salience: Option<f32>,
    pub name: Option<String>,
    pub type_: Option<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

mentions: Option<Vec<EntityMention>>

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

metadata: Option<HashMap<String, String>>

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.

salience: Option<f32>

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.

name: Option<String>

The representative name for the entity.

type_: Option<String>

The entity type.

Trait Implementations

impl Part for Entity[src]

impl Default for Entity[src]

impl Clone for Entity[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Entity[src]

impl Serialize for Entity[src]

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

Auto Trait Implementations

impl Send for Entity

impl Unpin for Entity

impl Sync for Entity

impl UnwindSafe for Entity

impl RefUnwindSafe for Entity

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]