[][src]Struct rusoto_comprehendmedical::DetectEntitiesV2Response

pub struct DetectEntitiesV2Response {
    pub entities: Vec<Entity>,
    pub model_version: String,
    pub pagination_token: Option<String>,
    pub unmapped_attributes: Option<Vec<UnmappedAttribute>>,
}

Fields

entities: Vec<Entity>

The collection of medical entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence in the detection and analysis. Attributes and traits of the entity are also returned.

model_version: String

The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.

pagination_token: Option<String>

If the result to the DetectEntitiesV2 operation was truncated, include the PaginationToken to fetch the next page of entities.

unmapped_attributes: Option<Vec<UnmappedAttribute>>

Attributes extracted from the input text that couldn't be related to an entity.

Trait Implementations

impl Clone for DetectEntitiesV2Response[src]

impl Debug for DetectEntitiesV2Response[src]

impl Default for DetectEntitiesV2Response[src]

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

impl PartialEq<DetectEntitiesV2Response> for DetectEntitiesV2Response[src]

impl StructuralPartialEq for DetectEntitiesV2Response[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, 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.