pub struct GooglePrivacyDlpV2TransformationErrorHandling {
pub leave_untransformed: Option<GooglePrivacyDlpV2LeaveUntransformed>,
pub throw_error: Option<GooglePrivacyDlpV2ThrowError>,
}Expand description
How to handle transformation errors during de-identification. A transformation error occurs when the requested transformation is incompatible with the data. For example, trying to de-identify an IP address using a DateShift transformation would result in a transformation error, since date info cannot be extracted from an IP address. Information about any incompatible transformations, and how they were handled, is returned in the response as part of the TransformationOverviews.
This type is not used in any activity, and only used as part of another schema.
Fields§
§leave_untransformed: Option<GooglePrivacyDlpV2LeaveUntransformed>Ignore errors
throw_error: Option<GooglePrivacyDlpV2ThrowError>Throw an error
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2TransformationErrorHandling
impl Clone for GooglePrivacyDlpV2TransformationErrorHandling
Source§fn clone(&self) -> GooglePrivacyDlpV2TransformationErrorHandling
fn clone(&self) -> GooglePrivacyDlpV2TransformationErrorHandling
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 GooglePrivacyDlpV2TransformationErrorHandling
impl Default for GooglePrivacyDlpV2TransformationErrorHandling
Source§fn default() -> GooglePrivacyDlpV2TransformationErrorHandling
fn default() -> GooglePrivacyDlpV2TransformationErrorHandling
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2TransformationErrorHandling
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2TransformationErrorHandling
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 GooglePrivacyDlpV2TransformationErrorHandling
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2TransformationErrorHandling
impl RefUnwindSafe for GooglePrivacyDlpV2TransformationErrorHandling
impl Send for GooglePrivacyDlpV2TransformationErrorHandling
impl Sync for GooglePrivacyDlpV2TransformationErrorHandling
impl Unpin for GooglePrivacyDlpV2TransformationErrorHandling
impl UnwindSafe for GooglePrivacyDlpV2TransformationErrorHandling
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