[][src]Struct google_dlp2::GooglePrivacyDlpV2TransformationSummary

pub struct GooglePrivacyDlpV2TransformationSummary {
    pub field: Option<GooglePrivacyDlpV2FieldId>,
    pub field_transformations: Option<Vec<GooglePrivacyDlpV2FieldTransformation>>,
    pub info_type: Option<GooglePrivacyDlpV2InfoType>,
    pub transformed_bytes: Option<String>,
    pub record_suppress: Option<GooglePrivacyDlpV2RecordSuppression>,
    pub results: Option<Vec<GooglePrivacyDlpV2SummaryResult>>,
    pub transformation: Option<GooglePrivacyDlpV2PrimitiveTransformation>,
}

Summary of a single transformation. Only one of 'transformation', 'field_transformation', or 'record_suppress' will be set.

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

Fields

field: Option<GooglePrivacyDlpV2FieldId>

Set if the transformation was limited to a specific FieldId.

field_transformations: Option<Vec<GooglePrivacyDlpV2FieldTransformation>>

The field transformation that was applied. If multiple field transformations are requested for a single field, this list will contain all of them; otherwise, only one is supplied.

info_type: Option<GooglePrivacyDlpV2InfoType>

Set if the transformation was limited to a specific InfoType.

transformed_bytes: Option<String>

Total size in bytes that were transformed in some way.

record_suppress: Option<GooglePrivacyDlpV2RecordSuppression>

The specific suppression option these stats apply to.

results: Option<Vec<GooglePrivacyDlpV2SummaryResult>>

Collection of all transformations that took place or had an error.

transformation: Option<GooglePrivacyDlpV2PrimitiveTransformation>

The specific transformation these stats apply to.

Trait Implementations

impl Clone for GooglePrivacyDlpV2TransformationSummary[src]

impl Debug for GooglePrivacyDlpV2TransformationSummary[src]

impl Default for GooglePrivacyDlpV2TransformationSummary[src]

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

impl Part for GooglePrivacyDlpV2TransformationSummary[src]

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