pub struct GooglePrivacyDlpV2BigQueryKey {
pub row_number: Option<i64>,
pub table_reference: Option<GooglePrivacyDlpV2BigQueryTable>,
}Expand description
Row key for identifying a record in BigQuery table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§row_number: Option<i64>Row number inferred at the time the table was scanned. This value is nondeterministic, cannot be queried, and may be null for inspection jobs. To locate findings within a table, specify inspect_job.storage_config.big_query_options.identifying_fields in CreateDlpJobRequest.
table_reference: Option<GooglePrivacyDlpV2BigQueryTable>Complete BigQuery table reference.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2BigQueryKey
impl Clone for GooglePrivacyDlpV2BigQueryKey
Source§fn clone(&self) -> GooglePrivacyDlpV2BigQueryKey
fn clone(&self) -> GooglePrivacyDlpV2BigQueryKey
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 GooglePrivacyDlpV2BigQueryKey
impl Default for GooglePrivacyDlpV2BigQueryKey
Source§fn default() -> GooglePrivacyDlpV2BigQueryKey
fn default() -> GooglePrivacyDlpV2BigQueryKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryKey
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryKey
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 GooglePrivacyDlpV2BigQueryKey
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2BigQueryKey
impl RefUnwindSafe for GooglePrivacyDlpV2BigQueryKey
impl Send for GooglePrivacyDlpV2BigQueryKey
impl Sync for GooglePrivacyDlpV2BigQueryKey
impl Unpin for GooglePrivacyDlpV2BigQueryKey
impl UnwindSafe for GooglePrivacyDlpV2BigQueryKey
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