pub struct GooglePrivacyDlpV2KMapEstimationResult {
pub k_map_estimation_histogram: Option<Vec<GooglePrivacyDlpV2KMapEstimationHistogramBucket>>,
}Expand description
Result of the reidentifiability analysis. Note that these results are an estimation, not exact values.
This type is not used in any activity, and only used as part of another schema.
Fields§
§k_map_estimation_histogram: Option<Vec<GooglePrivacyDlpV2KMapEstimationHistogramBucket>>The intervals [min_anonymity, max_anonymity] do not overlap. If a value doesn’t correspond to any such interval, the associated frequency is zero. For example, the following records: {min_anonymity: 1, max_anonymity: 1, frequency: 17} {min_anonymity: 2, max_anonymity: 3, frequency: 42} {min_anonymity: 5, max_anonymity: 10, frequency: 99} mean that there are no record with an estimated anonymity of 4, 5, or larger than 10.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2KMapEstimationResult
impl Clone for GooglePrivacyDlpV2KMapEstimationResult
Source§fn clone(&self) -> GooglePrivacyDlpV2KMapEstimationResult
fn clone(&self) -> GooglePrivacyDlpV2KMapEstimationResult
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 GooglePrivacyDlpV2KMapEstimationResult
impl Default for GooglePrivacyDlpV2KMapEstimationResult
Source§fn default() -> GooglePrivacyDlpV2KMapEstimationResult
fn default() -> GooglePrivacyDlpV2KMapEstimationResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2KMapEstimationResult
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2KMapEstimationResult
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 GooglePrivacyDlpV2KMapEstimationResult
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2KMapEstimationResult
impl RefUnwindSafe for GooglePrivacyDlpV2KMapEstimationResult
impl Send for GooglePrivacyDlpV2KMapEstimationResult
impl Sync for GooglePrivacyDlpV2KMapEstimationResult
impl Unpin for GooglePrivacyDlpV2KMapEstimationResult
impl UnwindSafe for GooglePrivacyDlpV2KMapEstimationResult
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