Struct google_dlp2::GooglePrivacyDlpV2StatisticalTable[][src]

pub struct GooglePrivacyDlpV2StatisticalTable {
    pub table: Option<GooglePrivacyDlpV2BigQueryTable>,
    pub quasi_ids: Option<Vec<GooglePrivacyDlpV2QuasiIdentifierField>>,
    pub relative_frequency: Option<GooglePrivacyDlpV2FieldId>,
}

An auxiliary table containing 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 GooglePrivacyDlpV2StatisticalTable
[src]

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

impl Clone for GooglePrivacyDlpV2StatisticalTable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2StatisticalTable
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2StatisticalTable
[src]

Auto Trait Implementations