Struct google_vault1::CloudStorageFile[][src]

pub struct CloudStorageFile {
    pub md5_hash: Option<String>,
    pub bucket_name: Option<String>,
    pub object_name: Option<String>,
    pub size: Option<String>,
}

An export file on cloud storage

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

Fields

The md5 hash of the file.

The cloud storage bucket name of this export file. Can be used in cloud storage JSON/XML API.

The cloud storage object name of this export file. Can be used in cloud storage JSON/XML API.

The size of the export file.

Trait Implementations

impl Default for CloudStorageFile
[src]

Returns the "default value" for a type. Read more

impl Clone for CloudStorageFile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CloudStorageFile
[src]

Formats the value using the given formatter. Read more

impl Part for CloudStorageFile
[src]

Auto Trait Implementations