pub struct GooglePrivacyDlpV2RecordTransformations {
pub field_transformations: Option<Vec<GooglePrivacyDlpV2FieldTransformation>>,
pub record_suppressions: Option<Vec<GooglePrivacyDlpV2RecordSuppression>>,
}Expand description
A type of transformation that is applied over structured data such as a table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§field_transformations: Option<Vec<GooglePrivacyDlpV2FieldTransformation>>Transform the record by applying various field transformations.
record_suppressions: Option<Vec<GooglePrivacyDlpV2RecordSuppression>>Configuration defining which records get suppressed entirely. Records that match any suppression rule are omitted from the output.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2RecordTransformations
impl Clone for GooglePrivacyDlpV2RecordTransformations
Source§fn clone(&self) -> GooglePrivacyDlpV2RecordTransformations
fn clone(&self) -> GooglePrivacyDlpV2RecordTransformations
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GooglePrivacyDlpV2RecordTransformations
impl Default for GooglePrivacyDlpV2RecordTransformations
Source§fn default() -> GooglePrivacyDlpV2RecordTransformations
fn default() -> GooglePrivacyDlpV2RecordTransformations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2RecordTransformations
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2RecordTransformations
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GooglePrivacyDlpV2RecordTransformations
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2RecordTransformations
impl RefUnwindSafe for GooglePrivacyDlpV2RecordTransformations
impl Send for GooglePrivacyDlpV2RecordTransformations
impl Sync for GooglePrivacyDlpV2RecordTransformations
impl Unpin for GooglePrivacyDlpV2RecordTransformations
impl UnwindSafe for GooglePrivacyDlpV2RecordTransformations
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more