pub struct AndroidAppDeliveryData {
Show 16 fields pub download_size: Option<i64>, pub sha1: Option<String>, pub download_url: Option<String>, pub additional_file: Vec<AppFileMetadata>, pub download_auth_cookie: Vec<HttpCookie>, pub forward_locked: Option<bool>, pub refund_timeout: Option<i64>, pub server_initiated: Option<bool>, pub post_install_refund_window_millis: Option<i64>, pub immediate_start_needed: Option<bool>, pub patch_data: Option<AndroidAppPatchData>, pub encryption_params: Option<EncryptionParams>, pub download_url_gzipped: Option<String>, pub download_size_gzipped: Option<i64>, pub split: Vec<Split>, pub sha256: Option<String>,
}
Expand description

Both sha1 and sha256 are encoded with base64 with URL and Filename Safe Alphabet with padding removed

Fields

download_size: Option<i64>sha1: Option<String>download_url: Option<String>additional_file: Vec<AppFileMetadata>download_auth_cookie: Vec<HttpCookie>forward_locked: Option<bool>refund_timeout: Option<i64>server_initiated: Option<bool>post_install_refund_window_millis: Option<i64>immediate_start_needed: Option<bool>patch_data: Option<AndroidAppPatchData>encryption_params: Option<EncryptionParams>download_url_gzipped: Option<String>download_size_gzipped: Option<i64>split: Vec<Split>sha256: Option<String>

Implementations

Returns the value of download_size, or the default value if download_size is unset.

Returns the value of sha1, or the default value if sha1 is unset.

Returns the value of download_url, or the default value if download_url is unset.

Returns the value of forward_locked, or the default value if forward_locked is unset.

Returns the value of refund_timeout, or the default value if refund_timeout is unset.

Returns the value of server_initiated, or the default value if server_initiated is unset.

Returns the value of post_install_refund_window_millis, or the default value if post_install_refund_window_millis is unset.

Returns the value of immediate_start_needed, or the default value if immediate_start_needed is unset.

Returns the value of download_url_gzipped, or the default value if download_url_gzipped is unset.

Returns the value of download_size_gzipped, or the default value if download_size_gzipped is unset.

Returns the value of sha256, or the default value if sha256 is unset.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.