Struct google_dlp2::GooglePrivacyDlpV2Bucket[][src]

pub struct GooglePrivacyDlpV2Bucket {
    pub max: Option<GooglePrivacyDlpV2Value>,
    pub min: Option<GooglePrivacyDlpV2Value>,
    pub replacement_value: Option<GooglePrivacyDlpV2Value>,
}

Bucket is represented as a range, along with replacement values.

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

Fields

Upper bound of the range, exclusive; type must match min.

Lower bound of the range, inclusive. Type should be the same as max if used.

Replacement value for this bucket. If not provided the default behavior will be to hyphenate the min-max range.

Trait Implementations

impl Default for GooglePrivacyDlpV2Bucket
[src]

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

impl Clone for GooglePrivacyDlpV2Bucket
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2Bucket
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2Bucket
[src]

Auto Trait Implementations