Struct google_appengine1::FileInfo [] [src]

pub struct FileInfo {
    pub mime_type: Option<String>,
    pub source_url: Option<String>,
    pub sha1_sum: Option<String>,
}

Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.

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

Fields

The MIME type of the file.Defaults to the value from Google Cloud Storage.

URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.

The SHA1 hash of the file, in hex.

Trait Implementations

impl Debug for FileInfo
[src]

Formats the value using the given formatter.

impl Clone for FileInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for FileInfo
[src]

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

impl Part for FileInfo
[src]