Struct google_dlp2_beta1::GooglePrivacyDlpV2beta1Dictionary[][src]

pub struct GooglePrivacyDlpV2beta1Dictionary {
    pub word_list: Option<GooglePrivacyDlpV2beta1WordList>,
}

Custom information type based on a dictionary of words or phrases. This can be used to match sensitive information specific to the data, such as a list of employee IDs or job titles.

Dictionary words are case-insensitive and all characters other than letters and digits in the unicode Basic Multilingual Plane will be replaced with whitespace when scanning for matches, so the dictionary phrase "Sam Johnson" will match all three phrases "sam johnson", "Sam, Johnson", and "Sam (Johnson)". Additionally, the characters surrounding any match must be of a different type than the adjacent characters within the word, so letters must be next to non-letters and digits next to non-digits. For example, the dictionary word "jen" will match the first three letters of the text "jen123" but will return no matches for "jennifer".

Dictionary words containing a large number of characters that are not letters or digits may result in unexpected findings because such characters are treated as whitespace.

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

Fields

List of words or phrases to search for.

Trait Implementations

impl Default for GooglePrivacyDlpV2beta1Dictionary
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2beta1Dictionary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2beta1Dictionary
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2beta1Dictionary
[src]

Auto Trait Implementations