pub struct GooglePrivacyDlpV2ColumnDataProfile {
Show 20 fields pub column: Option<String>, pub column_info_type: Option<GooglePrivacyDlpV2InfoTypeSummary>, pub column_type: Option<String>, pub data_risk_level: Option<GooglePrivacyDlpV2DataRiskLevel>, pub dataset_id: Option<String>, pub dataset_location: Option<String>, pub dataset_project_id: Option<String>, pub estimated_null_percentage: Option<String>, pub estimated_uniqueness_score: Option<String>, pub free_text_score: Option<f64>, pub name: Option<String>, pub other_matches: Option<Vec<GooglePrivacyDlpV2OtherInfoTypeSummary>>, pub policy_state: Option<String>, pub profile_last_generated: Option<DateTime<Utc>>, pub profile_status: Option<GooglePrivacyDlpV2ProfileStatus>, pub sensitivity_score: Option<GooglePrivacyDlpV2SensitivityScore>, pub state: Option<String>, pub table_data_profile: Option<String>, pub table_full_resource: Option<String>, pub table_id: Option<String>,
}
Expand description

The profile for a scanned column within a table.

§Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields§

§column: Option<String>

The name of the column.

§column_info_type: Option<GooglePrivacyDlpV2InfoTypeSummary>

If it’s been determined this column can be identified as a single type, this will be set. Otherwise the column either has unidentifiable content or mixed types.

§column_type: Option<String>

The data type of a given column.

§data_risk_level: Option<GooglePrivacyDlpV2DataRiskLevel>

The data risk level for this column.

§dataset_id: Option<String>

The BigQuery dataset ID.

§dataset_location: Option<String>

The BigQuery location where the dataset’s data is stored. See https://cloud.google.com/bigquery/docs/locations for supported locations.

§dataset_project_id: Option<String>

The Google Cloud project ID that owns the profiled resource.

§estimated_null_percentage: Option<String>

Approximate percentage of entries being null in the column.

§estimated_uniqueness_score: Option<String>

Approximate uniqueness of the column.

§free_text_score: Option<f64>

The likelihood that this column contains free-form text. A value close to 1 may indicate the column is likely to contain free-form or natural language text. Range in 0-1.

§name: Option<String>

The name of the profile.

§other_matches: Option<Vec<GooglePrivacyDlpV2OtherInfoTypeSummary>>

Other types found within this column. List will be unordered.

§policy_state: Option<String>

Indicates if a policy tag has been applied to the column.

§profile_last_generated: Option<DateTime<Utc>>

The last time the profile was generated.

§profile_status: Option<GooglePrivacyDlpV2ProfileStatus>

Success or error status from the most recent profile generation attempt. May be empty if the profile is still being generated.

§sensitivity_score: Option<GooglePrivacyDlpV2SensitivityScore>

The sensitivity of this column.

§state: Option<String>

State of a profile.

§table_data_profile: Option<String>

The resource name of the table data profile.

§table_full_resource: Option<String>

The resource name of the resource this column is within.

§table_id: Option<String>

The BigQuery table ID.

Trait Implementations§

source§

impl Clone for GooglePrivacyDlpV2ColumnDataProfile

source§

fn clone(&self) -> GooglePrivacyDlpV2ColumnDataProfile

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GooglePrivacyDlpV2ColumnDataProfile

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GooglePrivacyDlpV2ColumnDataProfile

source§

fn default() -> GooglePrivacyDlpV2ColumnDataProfile

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2ColumnDataProfile

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for GooglePrivacyDlpV2ColumnDataProfile

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl ResponseResult for GooglePrivacyDlpV2ColumnDataProfile

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,