Struct google_dlp2::GooglePrivacyDlpV2Value[][src]

pub struct GooglePrivacyDlpV2Value {
    pub float_value: Option<f64>,
    pub timestamp_value: Option<String>,
    pub day_of_week_value: Option<String>,
    pub time_value: Option<GoogleTypeTimeOfDay>,
    pub date_value: Option<GoogleTypeDate>,
    pub string_value: Option<String>,
    pub boolean_value: Option<bool>,
    pub integer_value: Option<String>,
}

Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a 'Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data.

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

Fields

no description provided

no description provided

no description provided

no description provided

no description provided

no description provided

no description provided

no description provided

Trait Implementations

impl Default for GooglePrivacyDlpV2Value
[src]

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

impl Clone for GooglePrivacyDlpV2Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2Value
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2Value
[src]

Auto Trait Implementations