[][src]Struct google_healthcare1_beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination

pub struct GoogleCloudHealthcareV1beta1FhirBigQueryDestination {
    pub dataset_uri: Option<String>,
    pub force: Option<bool>,
    pub schema_config: Option<SchemaConfig>,
}

The configuration for exporting to BigQuery.

This type is not used in any activity, and only used as part of another schema.

Fields

dataset_uri: Option<String>

BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId

force: Option<bool>

If this flag is TRUE, all tables will be deleted from the dataset before the new exported tables are written. If the flag is not set and the destination dataset contains tables, the export call returns an error.

schema_config: Option<SchemaConfig>

The configuration for the exported BigQuery schema.

Trait Implementations

impl Clone for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

impl Debug for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

impl Default for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

impl<'de> Deserialize<'de> for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

impl Part for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

impl Serialize for GoogleCloudHealthcareV1beta1FhirBigQueryDestination[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any