pub struct GooglePrivacyDlpV2InfoTypeLimit {
pub info_type: Option<GooglePrivacyDlpV2InfoType>,
pub max_findings: Option<i32>,
}Expand description
Max findings configuration per infoType, per content item or long running DlpJob.
This type is not used in any activity, and only used as part of another schema.
Fields§
§info_type: Option<GooglePrivacyDlpV2InfoType>Type of information the findings limit applies to. Only one limit per info_type should be provided. If InfoTypeLimit does not have an info_type, the DLP API applies the limit against all info_types that are found but not specified in another InfoTypeLimit.
max_findings: Option<i32>Max findings limit for the given infoType.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2InfoTypeLimit
impl Clone for GooglePrivacyDlpV2InfoTypeLimit
Source§fn clone(&self) -> GooglePrivacyDlpV2InfoTypeLimit
fn clone(&self) -> GooglePrivacyDlpV2InfoTypeLimit
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 GooglePrivacyDlpV2InfoTypeLimit
impl Default for GooglePrivacyDlpV2InfoTypeLimit
Source§fn default() -> GooglePrivacyDlpV2InfoTypeLimit
fn default() -> GooglePrivacyDlpV2InfoTypeLimit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2InfoTypeLimit
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2InfoTypeLimit
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 GooglePrivacyDlpV2InfoTypeLimit
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2InfoTypeLimit
impl RefUnwindSafe for GooglePrivacyDlpV2InfoTypeLimit
impl Send for GooglePrivacyDlpV2InfoTypeLimit
impl Sync for GooglePrivacyDlpV2InfoTypeLimit
impl Unpin for GooglePrivacyDlpV2InfoTypeLimit
impl UnwindSafe for GooglePrivacyDlpV2InfoTypeLimit
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