pub struct GooglePrivacyDlpV2BigQueryTable {
pub dataset_id: Option<String>,
pub project_id: Option<String>,
pub table_id: Option<String>,
}Expand description
Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: :. or ...
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset_id: Option<String>Dataset ID of the table.
project_id: Option<String>The Google Cloud project ID of the project containing the table. If omitted, project ID is inferred from the API call.
table_id: Option<String>Name of the table.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2BigQueryTable
impl Clone for GooglePrivacyDlpV2BigQueryTable
Source§fn clone(&self) -> GooglePrivacyDlpV2BigQueryTable
fn clone(&self) -> GooglePrivacyDlpV2BigQueryTable
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 GooglePrivacyDlpV2BigQueryTable
impl Default for GooglePrivacyDlpV2BigQueryTable
Source§fn default() -> GooglePrivacyDlpV2BigQueryTable
fn default() -> GooglePrivacyDlpV2BigQueryTable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryTable
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryTable
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 GooglePrivacyDlpV2BigQueryTable
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2BigQueryTable
impl RefUnwindSafe for GooglePrivacyDlpV2BigQueryTable
impl Send for GooglePrivacyDlpV2BigQueryTable
impl Sync for GooglePrivacyDlpV2BigQueryTable
impl Unpin for GooglePrivacyDlpV2BigQueryTable
impl UnwindSafe for GooglePrivacyDlpV2BigQueryTable
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