[][src]Struct google_healthcare1_beta1::DeidentifyConfig

pub struct DeidentifyConfig {
    pub dicom: Option<DicomConfig>,
    pub image: Option<ImageConfig>,
    pub fhir: Option<FhirConfig>,
    pub annotation: Option<AnnotationConfig>,
    pub text: Option<TextConfig>,
}

Configures de-id options specific to different types of content. Each submessage customizes the handling of an https://tools.ietf.org/html/rfc6838 media type or subtype. Configs are applied in a nested manner at runtime.

This type is not used in any activity, and only used as part of another schema.

Fields

dicom: Option<DicomConfig>

Configures de-id of application/DICOM content.

image: Option<ImageConfig>

Configures de-identification of image pixels wherever they are found in the source_dataset.

fhir: Option<FhirConfig>

Configures de-id of application/FHIR content.

annotation: Option<AnnotationConfig>

Configures how annotations, meaning that the location and infoType of sensitive information findings, are created during de-identification. If unspecified, no annotations are created.

text: Option<TextConfig>

Configures de-identification of text wherever it is found in the source_dataset.

Trait Implementations

impl Clone for DeidentifyConfig[src]

impl Debug for DeidentifyConfig[src]

impl Default for DeidentifyConfig[src]

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

impl Part for DeidentifyConfig[src]

impl Serialize for DeidentifyConfig[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Typeable for T where
    T: Any