Struct gapi_grpc::google::privacy::dlp::v2::StatisticalTable[][src]

pub struct StatisticalTable {
    pub table: Option<BigQueryTable>,
    pub quasi_ids: Vec<QuasiIdentifierField>,
    pub relative_frequency: Option<FieldId>,
}

An auxiliary table containing statistical information on the relative frequency of different quasi-identifiers values. It has one or several quasi-identifiers columns, and one column that indicates the relative frequency of each quasi-identifier tuple. If a tuple is present in the data but not in the auxiliary table, the corresponding relative frequency is assumed to be zero (and thus, the tuple is highly reidentifiable).

Fields

table: Option<BigQueryTable>

Required. Auxiliary table location.

quasi_ids: Vec<QuasiIdentifierField>

Required. Quasi-identifier columns.

relative_frequency: Option<FieldId>

Required. The relative frequency column must contain a floating-point number between 0 and 1 (inclusive). Null values are assumed to be zero.

Trait Implementations

impl Clone for StatisticalTable[src]

impl Debug for StatisticalTable[src]

impl Default for StatisticalTable[src]

impl Message for StatisticalTable[src]

impl PartialEq<StatisticalTable> for StatisticalTable[src]

impl StructuralPartialEq for StatisticalTable[src]

Auto Trait Implementations

impl RefUnwindSafe for StatisticalTable

impl Send for StatisticalTable

impl Sync for StatisticalTable

impl Unpin for StatisticalTable

impl UnwindSafe for StatisticalTable

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]