pub struct GooglePrivacyDlpV2DeidentifyConfig {
pub image_transformations: Option<GooglePrivacyDlpV2ImageTransformations>,
pub info_type_transformations: Option<GooglePrivacyDlpV2InfoTypeTransformations>,
pub record_transformations: Option<GooglePrivacyDlpV2RecordTransformations>,
pub transformation_error_handling: Option<GooglePrivacyDlpV2TransformationErrorHandling>,
}Expand description
The configuration that controls how the data will change.
This type is not used in any activity, and only used as part of another schema.
Fields§
§image_transformations: Option<GooglePrivacyDlpV2ImageTransformations>Treat the dataset as an image and redact.
info_type_transformations: Option<GooglePrivacyDlpV2InfoTypeTransformations>Treat the dataset as free-form text and apply the same free text transformation everywhere.
record_transformations: Option<GooglePrivacyDlpV2RecordTransformations>Treat the dataset as structured. Transformations can be applied to specific locations within structured datasets, such as transforming a column within a table.
transformation_error_handling: Option<GooglePrivacyDlpV2TransformationErrorHandling>Mode for handling transformation errors. If left unspecified, the default mode is TransformationErrorHandling.ThrowError.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2DeidentifyConfig
impl Clone for GooglePrivacyDlpV2DeidentifyConfig
Source§fn clone(&self) -> GooglePrivacyDlpV2DeidentifyConfig
fn clone(&self) -> GooglePrivacyDlpV2DeidentifyConfig
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 GooglePrivacyDlpV2DeidentifyConfig
impl Default for GooglePrivacyDlpV2DeidentifyConfig
Source§fn default() -> GooglePrivacyDlpV2DeidentifyConfig
fn default() -> GooglePrivacyDlpV2DeidentifyConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2DeidentifyConfig
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2DeidentifyConfig
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 GooglePrivacyDlpV2DeidentifyConfig
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2DeidentifyConfig
impl RefUnwindSafe for GooglePrivacyDlpV2DeidentifyConfig
impl Send for GooglePrivacyDlpV2DeidentifyConfig
impl Sync for GooglePrivacyDlpV2DeidentifyConfig
impl Unpin for GooglePrivacyDlpV2DeidentifyConfig
impl UnwindSafe for GooglePrivacyDlpV2DeidentifyConfig
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