[][src]Struct rusoto_comprehendmedical::ICD10CMConcept

pub struct ICD10CMConcept {
    pub code: Option<String>,
    pub description: Option<String>,
    pub score: Option<f32>,
}

The ICD-10-CM concepts that the entity could refer to, along with a score indicating the likelihood of the match.

Fields

code: Option<String>

The ICD-10-CM code that identifies the concept found in the knowledge base from the Centers for Disease Control.

description: Option<String>

The long description of the ICD-10-CM code in the ontology.

score: Option<f32>

The level of confidence that Amazon Comprehend Medical has that the entity is accurately linked to an ICD-10-CM concept.

Trait Implementations

impl Clone for ICD10CMConcept[src]

impl Debug for ICD10CMConcept[src]

impl Default for ICD10CMConcept[src]

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

impl PartialEq<ICD10CMConcept> for ICD10CMConcept[src]

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