[][src]Struct rusoto_comprehendmedical::InferRxNormResponse

pub struct InferRxNormResponse {
    pub entities: Vec<RxNormEntity>,
    pub model_version: Option<String>,
    pub pagination_token: Option<String>,
}

Fields

entities: Vec<RxNormEntity>

The medication entities detected in the text linked to RxNorm 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 InferRxNorm was truncated, include the PaginationToken to fetch the next page of medication entities.

Trait Implementations

impl Clone for InferRxNormResponse[src]

impl Debug for InferRxNormResponse[src]

impl Default for InferRxNormResponse[src]

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

impl PartialEq<InferRxNormResponse> for InferRxNormResponse[src]

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