pub struct ApkSplits {
pub bundle_splits: Option<Vec<FileReference>>,
}Expand description
A single dynamic feature apk.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bundle_splits: Option<Vec<FileReference>>A list of .apk files generated by bundletool to install to the device under test as a single android app with adb install-multiple. If specified, requires one or more bundle_splits. The first split specified represents the base APK, while subsequent splits represent feature apks.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApkSplits
impl<'de> Deserialize<'de> for ApkSplits
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
impl Part for ApkSplits
Auto Trait Implementations§
impl Freeze for ApkSplits
impl RefUnwindSafe for ApkSplits
impl Send for ApkSplits
impl Sync for ApkSplits
impl Unpin for ApkSplits
impl UnwindSafe for ApkSplits
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