[][src]Struct rusoto_comprehendmedical::DetectPHIResponse

pub struct DetectPHIResponse {
    pub entities: Vec<Entity>,
    pub model_version: String,
    pub pagination_token: Option<String>,
}

Fields

entities: Vec<Entity>

The collection of PHI 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 that Amazon Comprehend Medical has in its detection.

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 of the previous request to DetectPHI was truncated, include the PaginationToken to fetch the next page of PHI entities.

Trait Implementations

impl Clone for DetectPHIResponse[src]

impl Debug for DetectPHIResponse[src]

impl Default for DetectPHIResponse[src]

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

impl PartialEq<DetectPHIResponse> for DetectPHIResponse[src]

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