[][src]Struct google_healthcare1_beta1::DicomConfig

pub struct DicomConfig {
    pub filter_profile: Option<String>,
    pub remove_list: Option<TagFilterList>,
    pub skip_id_redaction: Option<bool>,
    pub keep_list: Option<TagFilterList>,
}

Specifies the parameters needed for de-identification of DICOM stores.

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

Fields

filter_profile: Option<String>

Tag filtering profile that determines which tags to keep/remove.

remove_list: Option<TagFilterList>

List of tags to remove. Keep all other tags.

skip_id_redaction: Option<bool>

If true, skip replacing StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID, and MediaStorageSOPInstanceUID and leave them untouched. The Cloud Healthcare API regenerates these UIDs by default based on the DICOM Standard's reasoning: "Whilst these UIDs cannot be mapped directly to an individual out of context, given access to the original images, or to a database of the original images containing the UIDs, it would be possible to recover the individual's identity." http://dicom.nema.org/medical/dicom/current/output/chtml/part15/sect_E.3.9.html

keep_list: Option<TagFilterList>

List of tags to keep. Remove all other tags.

Trait Implementations

impl Clone for DicomConfig[src]

impl Debug for DicomConfig[src]

impl Default for DicomConfig[src]

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

impl Part for DicomConfig[src]

impl Serialize for DicomConfig[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