pub struct GooglePrivacyDlpV2ProcessingLocation {
pub document_fallback_location: Option<GooglePrivacyDlpV2DocumentFallbackLocation>,
pub image_fallback_location: Option<GooglePrivacyDlpV2ImageFallbackLocation>,
}Expand description
Configure processing location for discovery and inspection. For example, image OCR is only provided in limited regions but configuring ProcessingLocation will redirect OCR to a location where OCR is provided.
This type is not used in any activity, and only used as part of another schema.
Fields§
§document_fallback_location: Option<GooglePrivacyDlpV2DocumentFallbackLocation>Document processing falls back using this configuration.
image_fallback_location: Option<GooglePrivacyDlpV2ImageFallbackLocation>Image processing falls back using this configuration.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2ProcessingLocation
impl Clone for GooglePrivacyDlpV2ProcessingLocation
Source§fn clone(&self) -> GooglePrivacyDlpV2ProcessingLocation
fn clone(&self) -> GooglePrivacyDlpV2ProcessingLocation
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 GooglePrivacyDlpV2ProcessingLocation
impl Default for GooglePrivacyDlpV2ProcessingLocation
Source§fn default() -> GooglePrivacyDlpV2ProcessingLocation
fn default() -> GooglePrivacyDlpV2ProcessingLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2ProcessingLocation
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2ProcessingLocation
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 GooglePrivacyDlpV2ProcessingLocation
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2ProcessingLocation
impl RefUnwindSafe for GooglePrivacyDlpV2ProcessingLocation
impl Send for GooglePrivacyDlpV2ProcessingLocation
impl Sync for GooglePrivacyDlpV2ProcessingLocation
impl Unpin for GooglePrivacyDlpV2ProcessingLocation
impl UnwindSafe for GooglePrivacyDlpV2ProcessingLocation
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