Struct google_appengine1::ZipInfo [] [src]

pub struct ZipInfo {
    pub files_count: Option<i32>,
    pub source_url: Option<String>,
}

The zip file information for a zip deployment.

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

Fields

An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.

URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.

Trait Implementations

impl Default for ZipInfo
[src]

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

impl Clone for ZipInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ZipInfo
[src]

Formats the value using the given formatter.

impl Part for ZipInfo
[src]