pub struct GoogleCloudRetailV2OutputConfigBigQueryDestination {
pub dataset_id: Option<String>,
pub table_id_prefix: Option<String>,
pub table_type: Option<String>,
}Expand description
The BigQuery output destination configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset_id: Option<String>Required. The ID of a BigQuery Dataset.
table_id_prefix: Option<String>Required. The prefix of exported BigQuery tables.
table_type: Option<String>Required. Describes the table type. The following values are supported: * table: A BigQuery native table. * view: A virtual table defined by a SQL query.
Trait Implementations§
Source§impl Clone for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl Clone for GoogleCloudRetailV2OutputConfigBigQueryDestination
Source§fn clone(&self) -> GoogleCloudRetailV2OutputConfigBigQueryDestination
fn clone(&self) -> GoogleCloudRetailV2OutputConfigBigQueryDestination
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 GoogleCloudRetailV2OutputConfigBigQueryDestination
impl Default for GoogleCloudRetailV2OutputConfigBigQueryDestination
Source§fn default() -> GoogleCloudRetailV2OutputConfigBigQueryDestination
fn default() -> GoogleCloudRetailV2OutputConfigBigQueryDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl<'de> Deserialize<'de> for GoogleCloudRetailV2OutputConfigBigQueryDestination
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 GoogleCloudRetailV2OutputConfigBigQueryDestination
Auto Trait Implementations§
impl Freeze for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl RefUnwindSafe for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl Send for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl Sync for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl Unpin for GoogleCloudRetailV2OutputConfigBigQueryDestination
impl UnwindSafe for GoogleCloudRetailV2OutputConfigBigQueryDestination
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