[][src]Struct google_dlp2::GooglePrivacyDlpV2HotwordRule

pub struct GooglePrivacyDlpV2HotwordRule {
    pub proximity: Option<GooglePrivacyDlpV2Proximity>,
    pub hotword_regex: Option<GooglePrivacyDlpV2Regex>,
    pub likelihood_adjustment: Option<GooglePrivacyDlpV2LikelihoodAdjustment>,
}

The rule that adjusts the likelihood of findings within a certain proximity of hotwords.

This type is not used in any activity, and only used as part of another schema.

Fields

proximity: Option<GooglePrivacyDlpV2Proximity>

Proximity of the finding within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. Note that the finding itself will be included in the window, so that hotwords may be used to match substrings of the finding itself. For example, the certainty of a phone number regex "(\d{3}) \d{3}-\d{4}" could be adjusted upwards if the area code is known to be the local area code of a company office using the hotword regex "(xxx)", where "xxx" is the area code in question.

hotword_regex: Option<GooglePrivacyDlpV2Regex>

Regular expression pattern defining what qualifies as a hotword.

likelihood_adjustment: Option<GooglePrivacyDlpV2LikelihoodAdjustment>

Likelihood adjustment to apply to all matching findings.

Trait Implementations

impl Clone for GooglePrivacyDlpV2HotwordRule[src]

impl Debug for GooglePrivacyDlpV2HotwordRule[src]

impl Default for GooglePrivacyDlpV2HotwordRule[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2HotwordRule[src]

impl Part for GooglePrivacyDlpV2HotwordRule[src]

impl Serialize for GooglePrivacyDlpV2HotwordRule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any