[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1GcsFileSpec

pub struct GoogleCloudDatacatalogV1beta1GcsFileSpec {
    pub size_bytes: Option<String>,
    pub file_path: Option<String>,
    pub gcs_timestamps: Option<GoogleCloudDatacatalogV1beta1SystemTimestamps>,
}

Specifications of a single file in Cloud Storage.

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

Fields

size_bytes: Option<String>

Output only. The size of the file, in bytes.

file_path: Option<String>

Required. The full file path. Example: gs://bucket_name/a/b.txt.

gcs_timestamps: Option<GoogleCloudDatacatalogV1beta1SystemTimestamps>

Output only. Timestamps about the Cloud Storage file.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1GcsFileSpec[src]

impl Debug for GoogleCloudDatacatalogV1beta1GcsFileSpec[src]

impl Default for GoogleCloudDatacatalogV1beta1GcsFileSpec[src]

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

impl Part for GoogleCloudDatacatalogV1beta1GcsFileSpec[src]

impl Serialize for GoogleCloudDatacatalogV1beta1GcsFileSpec[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