[][src]Struct google_healthcare1_beta1::DeidentifyDicomStoreRequest

pub struct DeidentifyDicomStoreRequest {
    pub filter_config: Option<DicomFilterConfig>,
    pub destination_store: Option<String>,
    pub config: Option<DeidentifyConfig>,
}

Creates a new DICOM store with sensitive information de-identified.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

filter_config: Option<DicomFilterConfig>

Filter configuration.

destination_store: Option<String>

The name of the DICOM store to create and write the redacted data to. For example, projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}.

  • The destination dataset must exist.
  • The source dataset and destination dataset must both reside in the same project. De-identifying data across multiple projects is not supported.
  • The destination DICOM store must not exist.
  • The caller must have the necessary permissions to create the destination DICOM store.
config: Option<DeidentifyConfig>

De-identify configuration.

Trait Implementations

impl Clone for DeidentifyDicomStoreRequest[src]

impl Debug for DeidentifyDicomStoreRequest[src]

impl Default for DeidentifyDicomStoreRequest[src]

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

impl RequestValue for DeidentifyDicomStoreRequest[src]

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