Struct google_dlp2_beta1::GooglePrivacyDlpV2beta1AuxiliaryTable[][src]

pub struct GooglePrivacyDlpV2beta1AuxiliaryTable {
    pub table: Option<GooglePrivacyDlpV2beta1BigQueryTable>,
    pub quasi_ids: Option<Vec<GooglePrivacyDlpV2beta1QuasiIdField>>,
    pub relative_frequency: Option<GooglePrivacyDlpV2beta1FieldId>,
}

An auxiliary table contains statistical information on the relative frequency of different quasi-identifiers values. It has one or several quasi-identifiers columns, and one column that indicates the relative frequency of each quasi-identifier tuple. If a tuple is present in the data but not in the auxiliary table, the corresponding relative frequency is assumed to be zero (and thus, the tuple is highly reidentifiable).

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

Fields

Auxiliary table location. [required]

Quasi-identifier columns. [required]

The relative frequency column must contain a floating-point number between 0 and 1 (inclusive). Null values are assumed to be zero. [required]

Trait Implementations

impl Default for GooglePrivacyDlpV2beta1AuxiliaryTable
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2beta1AuxiliaryTable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2beta1AuxiliaryTable
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2beta1AuxiliaryTable
[src]

Auto Trait Implementations