Struct google_dlp2_beta1::GooglePrivacyDlpV2beta1Bucket[][src]

pub struct GooglePrivacyDlpV2beta1Bucket {
    pub max: Option<GooglePrivacyDlpV2beta1Value>,
    pub replacement_value: Option<GooglePrivacyDlpV2beta1Value>,
    pub min: Option<GooglePrivacyDlpV2beta1Value>,
}

Buckets represented as ranges, along with replacement values. Ranges must be non-overlapping.

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.

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

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

Trait Implementations

impl Default for GooglePrivacyDlpV2beta1Bucket
[src]

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

impl Clone for GooglePrivacyDlpV2beta1Bucket
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2beta1Bucket
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2beta1Bucket
[src]

Auto Trait Implementations