[][src]Struct rusoto_comprehend::EntityRecognizerMetadataEntityTypesListItem

pub struct EntityRecognizerMetadataEntityTypesListItem {
    pub evaluation_metrics: Option<EntityTypesEvaluationMetrics>,
    pub number_of_train_mentions: Option<i64>,
    pub type_: Option<String>,
}

Individual item from the list of entity types in the metadata of an entity recognizer.

Fields

evaluation_metrics: Option<EntityTypesEvaluationMetrics>

Detailed information about the accuracy of the entity recognizer for a specific item on the list of entity types.

number_of_train_mentions: Option<i64>

Indicates the number of times the given entity type was seen in the training data.

type_: Option<String>

Type of entity from the list of entity types in the metadata of an entity recognizer.

Trait Implementations

impl Clone for EntityRecognizerMetadataEntityTypesListItem[src]

impl Debug for EntityRecognizerMetadataEntityTypesListItem[src]

impl Default for EntityRecognizerMetadataEntityTypesListItem[src]

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

impl PartialEq<EntityRecognizerMetadataEntityTypesListItem> for EntityRecognizerMetadataEntityTypesListItem[src]

impl StructuralPartialEq for EntityRecognizerMetadataEntityTypesListItem[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> 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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.