pub struct AndroidAppDeliveryData {Show 19 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 compressed_download_url: Option<String>,
pub compressed_size: Option<i64>,
pub split_delivery_data: Vec<SplitDeliveryData>,
pub install_location: Option<i32>,
pub type: Option<i64>,
pub compressed_app_data: Option<CompressedAppData>,
pub sha256: Option<String>,
}Fields§
§download_size: Option<i64>§sha1: Option<String>§download_url: Option<String>§additional_file: Vec<AppFileMetadata>§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>§compressed_download_url: Option<String>§compressed_size: Option<i64>§split_delivery_data: Vec<SplitDeliveryData>§install_location: Option<i32>§type: Option<i64>§compressed_app_data: Option<CompressedAppData>§sha256: Option<String>Implementations§
Source§impl AndroidAppDeliveryData
impl AndroidAppDeliveryData
Sourcepub fn download_size(&self) -> i64
pub fn download_size(&self) -> i64
Returns the value of download_size, or the default value if download_size is unset.
Sourcepub fn download_url(&self) -> &str
pub fn download_url(&self) -> &str
Returns the value of download_url, or the default value if download_url is unset.
Sourcepub fn forward_locked(&self) -> bool
pub fn forward_locked(&self) -> bool
Returns the value of forward_locked, or the default value if forward_locked is unset.
Sourcepub fn refund_timeout(&self) -> i64
pub fn refund_timeout(&self) -> i64
Returns the value of refund_timeout, or the default value if refund_timeout is unset.
Sourcepub fn server_initiated(&self) -> bool
pub fn server_initiated(&self) -> bool
Returns the value of server_initiated, or the default value if server_initiated is unset.
Sourcepub fn post_install_refund_window_millis(&self) -> i64
pub fn post_install_refund_window_millis(&self) -> i64
Returns the value of post_install_refund_window_millis, or the default value if post_install_refund_window_millis is unset.
Sourcepub fn immediate_start_needed(&self) -> bool
pub fn immediate_start_needed(&self) -> bool
Returns the value of immediate_start_needed, or the default value if immediate_start_needed is unset.
Sourcepub fn compressed_download_url(&self) -> &str
pub fn compressed_download_url(&self) -> &str
Returns the value of compressed_download_url, or the default value if compressed_download_url is unset.
Sourcepub fn compressed_size(&self) -> i64
pub fn compressed_size(&self) -> i64
Returns the value of compressed_size, or the default value if compressed_size is unset.
Sourcepub fn install_location(&self) -> i32
pub fn install_location(&self) -> i32
Returns the value of install_location, or the default value if install_location is unset.
Trait Implementations§
Source§impl Clone for AndroidAppDeliveryData
impl Clone for AndroidAppDeliveryData
Source§fn clone(&self) -> AndroidAppDeliveryData
fn clone(&self) -> AndroidAppDeliveryData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AndroidAppDeliveryData
impl Debug for AndroidAppDeliveryData
Source§impl Default for AndroidAppDeliveryData
impl Default for AndroidAppDeliveryData
Source§impl Message for AndroidAppDeliveryData
impl Message for AndroidAppDeliveryData
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.