[][src]Struct google_dlp2::GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails

pub struct GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails {
    pub numerical_stats_result: Option<GooglePrivacyDlpV2NumericalStatsResult>,
    pub k_map_estimation_result: Option<GooglePrivacyDlpV2KMapEstimationResult>,
    pub k_anonymity_result: Option<GooglePrivacyDlpV2KAnonymityResult>,
    pub l_diversity_result: Option<GooglePrivacyDlpV2LDiversityResult>,
    pub requested_privacy_metric: Option<GooglePrivacyDlpV2PrivacyMetric>,
    pub categorical_stats_result: Option<GooglePrivacyDlpV2CategoricalStatsResult>,
    pub delta_presence_estimation_result: Option<GooglePrivacyDlpV2DeltaPresenceEstimationResult>,
    pub requested_source_table: Option<GooglePrivacyDlpV2BigQueryTable>,
}

Result of a risk analysis operation request.

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

Fields

numerical_stats_result: Option<GooglePrivacyDlpV2NumericalStatsResult>

Numerical stats result

k_map_estimation_result: Option<GooglePrivacyDlpV2KMapEstimationResult>

K-map result

k_anonymity_result: Option<GooglePrivacyDlpV2KAnonymityResult>

K-anonymity result

l_diversity_result: Option<GooglePrivacyDlpV2LDiversityResult>

L-divesity result

requested_privacy_metric: Option<GooglePrivacyDlpV2PrivacyMetric>

Privacy metric to compute.

categorical_stats_result: Option<GooglePrivacyDlpV2CategoricalStatsResult>

Categorical stats result

delta_presence_estimation_result: Option<GooglePrivacyDlpV2DeltaPresenceEstimationResult>

Delta-presence result

requested_source_table: Option<GooglePrivacyDlpV2BigQueryTable>

Input dataset to compute metrics over.

Trait Implementations

impl Clone for GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails[src]

impl Debug for GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails[src]

impl Default for GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails[src]

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

impl Part for GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails[src]

impl Serialize for GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails[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