Struct google_dlp2::GooglePrivacyDlpV2NumericalStatsResult[][src]

pub struct GooglePrivacyDlpV2NumericalStatsResult {
    pub quantile_values: Option<Vec<GooglePrivacyDlpV2Value>>,
    pub max_value: Option<GooglePrivacyDlpV2Value>,
    pub min_value: Option<GooglePrivacyDlpV2Value>,
}

Result of the numerical stats computation.

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

Fields

List of 99 values that partition the set of field values into 100 equal sized buckets.

Maximum value appearing in the column.

Minimum value appearing in the column.

Trait Implementations

impl Default for GooglePrivacyDlpV2NumericalStatsResult
[src]

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

impl Clone for GooglePrivacyDlpV2NumericalStatsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2NumericalStatsResult
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2NumericalStatsResult
[src]

Auto Trait Implementations