[][src]Struct gcp_client::google::cloud::bigquery::logging::v1::Dataset

pub struct Dataset {
    pub dataset_name: Option<DatasetName>,
    pub info: Option<DatasetInfo>,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub acl: Option<BigQueryAcl>,
    pub default_table_expire_duration: Option<Duration>,
}

BigQuery dataset information. See the Dataset API resource for more details on individual fields.

Fields

dataset_name: Option<DatasetName>

The name of the dataset.

info: Option<DatasetInfo>

User-provided metadata for the dataset.

create_time: Option<Timestamp>

The time the dataset was created.

update_time: Option<Timestamp>

The time the dataset was last modified.

acl: Option<BigQueryAcl>

The access control list for the dataset.

default_table_expire_duration: Option<Duration>

If this field is present, each table that does not specify an expiration time is assigned an expiration time by adding this duration to the table's createTime. If this field is empty, there is no default table expiration time.

Trait Implementations

impl Clone for Dataset[src]

impl Debug for Dataset[src]

impl Default for Dataset[src]

impl Message for Dataset[src]

impl PartialEq<Dataset> for Dataset[src]

impl StructuralPartialEq for Dataset[src]

Auto Trait Implementations

impl RefUnwindSafe for Dataset

impl Send for Dataset

impl Sync for Dataset

impl Unpin for Dataset

impl UnwindSafe for Dataset

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, 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>, 

impl<T> WithSubscriber for T[src]