[][src]Struct rusoto_comprehendmedical::InferICD10CMResponse

pub struct InferICD10CMResponse {
    pub entities: Vec<ICD10CMEntity>,
    pub model_version: Option<String>,
    pub pagination_token: Option<String>,
}

Fields

entities: Vec<ICD10CMEntity>

The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.

model_version: Option<String>

The version of the model used to analyze the documents, in the format n.n.n You can use this information to track the model used for a particular batch of documents.

pagination_token: Option<String>

If the result of the previous request to InferICD10CM was truncated, include the PaginationToken to fetch the next page of medical condition entities.

Trait Implementations

impl Clone for InferICD10CMResponse[src]

impl Debug for InferICD10CMResponse[src]

impl Default for InferICD10CMResponse[src]

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

impl PartialEq<InferICD10CMResponse> for InferICD10CMResponse[src]

impl StructuralPartialEq for InferICD10CMResponse[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.