pub struct GooglePrivacyDlpV2TableLocation {
pub row_index: Option<i64>,
}Expand description
Location of a finding within a table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§row_index: Option<i64>The zero-based index of the row where the finding is located. Only populated for resources that have a natural ordering, not BigQuery. In BigQuery, to identify the row a finding came from, populate BigQueryOptions.identifying_fields with your primary key column names and when you store the findings the value of those columns will be stored inside of Finding.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2TableLocation
impl Clone for GooglePrivacyDlpV2TableLocation
Source§fn clone(&self) -> GooglePrivacyDlpV2TableLocation
fn clone(&self) -> GooglePrivacyDlpV2TableLocation
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 GooglePrivacyDlpV2TableLocation
impl Default for GooglePrivacyDlpV2TableLocation
Source§fn default() -> GooglePrivacyDlpV2TableLocation
fn default() -> GooglePrivacyDlpV2TableLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2TableLocation
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2TableLocation
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 GooglePrivacyDlpV2TableLocation
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2TableLocation
impl RefUnwindSafe for GooglePrivacyDlpV2TableLocation
impl Send for GooglePrivacyDlpV2TableLocation
impl Sync for GooglePrivacyDlpV2TableLocation
impl Unpin for GooglePrivacyDlpV2TableLocation
impl UnwindSafe for GooglePrivacyDlpV2TableLocation
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