[][src]Struct google_appengine1_beta5::FileInfo

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

mime_type: Option<String>

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

source_url: Option<String>

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//'.

sha1_sum: Option<String>

The SHA1 hash of the file, in hex.

Trait Implementations

impl Clone for FileInfo[src]

impl Debug for FileInfo[src]

impl Default for FileInfo[src]

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

impl Part for FileInfo[src]

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