pub struct GooglePrivacyDlpV2LDiversityEquivalenceClass {
pub equivalence_class_size: Option<i64>,
pub num_distinct_sensitive_values: Option<i64>,
pub quasi_ids_values: Option<Vec<GooglePrivacyDlpV2Value>>,
pub top_sensitive_values: Option<Vec<GooglePrivacyDlpV2ValueFrequency>>,
}Expand description
The set of columns’ values that share the same ldiversity value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§equivalence_class_size: Option<i64>Size of the k-anonymity equivalence class.
num_distinct_sensitive_values: Option<i64>Number of distinct sensitive values in this equivalence class.
quasi_ids_values: Option<Vec<GooglePrivacyDlpV2Value>>Quasi-identifier values defining the k-anonymity equivalence class. The order is always the same as the original request.
top_sensitive_values: Option<Vec<GooglePrivacyDlpV2ValueFrequency>>Estimated frequencies of top sensitive values.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl Clone for GooglePrivacyDlpV2LDiversityEquivalenceClass
Source§fn clone(&self) -> GooglePrivacyDlpV2LDiversityEquivalenceClass
fn clone(&self) -> GooglePrivacyDlpV2LDiversityEquivalenceClass
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 GooglePrivacyDlpV2LDiversityEquivalenceClass
impl Default for GooglePrivacyDlpV2LDiversityEquivalenceClass
Source§fn default() -> GooglePrivacyDlpV2LDiversityEquivalenceClass
fn default() -> GooglePrivacyDlpV2LDiversityEquivalenceClass
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2LDiversityEquivalenceClass
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 GooglePrivacyDlpV2LDiversityEquivalenceClass
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl RefUnwindSafe for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl Send for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl Sync for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl Unpin for GooglePrivacyDlpV2LDiversityEquivalenceClass
impl UnwindSafe for GooglePrivacyDlpV2LDiversityEquivalenceClass
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