pub struct AppBundle {
pub apks: Option<ApkSplits>,
pub bundle_location: Option<FileReference>,
}Expand description
An Android App Bundle file format, containing a BundleConfig.pb file, a base module directory, zero or more dynamic feature module directories. See https://developer.android.com/guide/app-bundle/build for guidance on building App Bundles.
This type is not used in any activity, and only used as part of another schema.
Fields§
§apks: Option<ApkSplits>.apk files generated by bundletool to install as a single android app.
bundle_location: Option<FileReference>.aab file representing the app bundle under test.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppBundle
impl<'de> Deserialize<'de> for AppBundle
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 AppBundle
Auto Trait Implementations§
impl Freeze for AppBundle
impl RefUnwindSafe for AppBundle
impl Send for AppBundle
impl Sync for AppBundle
impl Unpin for AppBundle
impl UnwindSafe for AppBundle
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