[][src]Struct google_dlp2::GooglePrivacyDlpV2Bucket

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

max: Option<GooglePrivacyDlpV2Value>

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

min: Option<GooglePrivacyDlpV2Value>

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

replacement_value: Option<GooglePrivacyDlpV2Value>

Required. Replacement value for this bucket.

Trait Implementations

impl Clone for GooglePrivacyDlpV2Bucket[src]

impl Debug for GooglePrivacyDlpV2Bucket[src]

impl Default for GooglePrivacyDlpV2Bucket[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Bucket[src]

impl Part for GooglePrivacyDlpV2Bucket[src]

impl Serialize for GooglePrivacyDlpV2Bucket[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any