pub struct GeneratedSplitApk {
pub download_id: Option<String>,
pub module_name: Option<String>,
pub split_id: Option<String>,
pub variant_id: Option<i32>,
}Expand description
Download metadata for a split APK.
This type is not used in any activity, and only used as part of another schema.
Fields§
§download_id: Option<String>Download ID, which uniquely identifies the APK to download. Should be supplied to generatedapks.download method.
module_name: Option<String>Name of the module that this APK belongs to.
split_id: Option<String>Split ID. Empty for the main split of the base module.
variant_id: Option<i32>ID of the generated variant.
Trait Implementations§
Source§impl Clone for GeneratedSplitApk
impl Clone for GeneratedSplitApk
Source§fn clone(&self) -> GeneratedSplitApk
fn clone(&self) -> GeneratedSplitApk
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GeneratedSplitApk
impl Debug for GeneratedSplitApk
Source§impl Default for GeneratedSplitApk
impl Default for GeneratedSplitApk
Source§fn default() -> GeneratedSplitApk
fn default() -> GeneratedSplitApk
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeneratedSplitApk
impl<'de> Deserialize<'de> for GeneratedSplitApk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GeneratedSplitApk
impl Serialize for GeneratedSplitApk
impl Part for GeneratedSplitApk
Auto Trait Implementations§
impl Freeze for GeneratedSplitApk
impl RefUnwindSafe for GeneratedSplitApk
impl Send for GeneratedSplitApk
impl Sync for GeneratedSplitApk
impl Unpin for GeneratedSplitApk
impl UnwindSafe for GeneratedSplitApk
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more