[][src]Struct gcp_client::google::appengine::v1::FileInfo

pub struct FileInfo {
    pub source_url: String,
    pub sha1_sum: String,
    pub mime_type: String,
}

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

Fields

source_url: 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/<bucket>/<object>'.

sha1_sum: String

The SHA1 hash of the file, in hex.

mime_type: String

The MIME type of the file.

Defaults to the value from Google Cloud Storage.

Trait Implementations

impl Clone for FileInfo[src]

impl Debug for FileInfo[src]

impl Default for FileInfo[src]

impl Message for FileInfo[src]

impl PartialEq<FileInfo> for FileInfo[src]

impl StructuralPartialEq 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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]