Struct gapi_grpc::google::privacy::dlp::v2::BigQueryTable[][src]

pub struct BigQueryTable {
    pub project_id: String,
    pub dataset_id: String,
    pub table_id: String,
}

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: <project_id>:<dataset_id>.<table_id> or <project_id>.<dataset_id>.<table_id>.

Fields

project_id: String

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.

dataset_id: String

Dataset ID of the table.

table_id: String

Name of the table.

Trait Implementations

impl Clone for BigQueryTable[src]

impl Debug for BigQueryTable[src]

impl Default for BigQueryTable[src]

impl Message for BigQueryTable[src]

impl PartialEq<BigQueryTable> for BigQueryTable[src]

impl StructuralPartialEq for BigQueryTable[src]

Auto Trait Implementations

impl RefUnwindSafe for BigQueryTable

impl Send for BigQueryTable

impl Sync for BigQueryTable

impl Unpin for BigQueryTable

impl UnwindSafe for BigQueryTable

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]