[][src]Struct google_dlp2::GooglePrivacyDlpV2Value

pub struct GooglePrivacyDlpV2Value {
    pub time_value: Option<GoogleTypeTimeOfDay>,
    pub timestamp_value: Option<String>,
    pub day_of_week_value: Option<String>,
    pub float_value: Option<f64>,
    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

time_value: Option<GoogleTypeTimeOfDay>

time of day

timestamp_value: Option<String>

timestamp

day_of_week_value: Option<String>

day of week

float_value: Option<f64>

float

date_value: Option<GoogleTypeDate>

date

string_value: Option<String>

string

boolean_value: Option<bool>

boolean

integer_value: Option<String>

integer

Trait Implementations

impl Clone for GooglePrivacyDlpV2Value[src]

impl Debug for GooglePrivacyDlpV2Value[src]

impl Default for GooglePrivacyDlpV2Value[src]

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

impl Part for GooglePrivacyDlpV2Value[src]

impl Serialize for GooglePrivacyDlpV2Value[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