[][src]Struct gcp_client::google::cloud::language::v1beta2::annotate_text_request::Features

pub struct Features {
    pub extract_syntax: bool,
    pub extract_entities: bool,
    pub extract_document_sentiment: bool,
    pub extract_entity_sentiment: bool,
    pub classify_text: bool,
}

All available features for sentiment, syntax, and semantic analysis. Setting each one to true will enable that specific analysis for the input. Next ID: 10

Fields

extract_syntax: bool

Extract syntax information.

extract_entities: bool

Extract entities.

extract_document_sentiment: bool

Extract document-level sentiment.

extract_entity_sentiment: bool

Extract entities and their associated sentiment.

classify_text: bool

Classify the full document into categories. If this is true, the API will use the default model which classifies into a predefined taxonomy.

Trait Implementations

impl Clone for Features[src]

impl Debug for Features[src]

impl Default for Features[src]

impl Message for Features[src]

impl PartialEq<Features> for Features[src]

impl StructuralPartialEq for Features[src]

Auto Trait Implementations

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

impl<T> WithSubscriber for T[src]