pub struct SystemApkOptions {
pub rotated: Option<bool>,
pub uncompressed_dex_files: Option<bool>,
pub uncompressed_native_libraries: Option<bool>,
}Expand description
Options for system APKs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§rotated: Option<bool>Whether to use the rotated key for signing the system APK.
uncompressed_dex_files: Option<bool>Whether system APK was generated with uncompressed dex files.
uncompressed_native_libraries: Option<bool>Whether system APK was generated with uncompressed native libraries.
Trait Implementations§
Source§impl Clone for SystemApkOptions
impl Clone for SystemApkOptions
Source§fn clone(&self) -> SystemApkOptions
fn clone(&self) -> SystemApkOptions
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 SystemApkOptions
impl Debug for SystemApkOptions
Source§impl Default for SystemApkOptions
impl Default for SystemApkOptions
Source§fn default() -> SystemApkOptions
fn default() -> SystemApkOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemApkOptions
impl<'de> Deserialize<'de> for SystemApkOptions
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 SystemApkOptions
impl Serialize for SystemApkOptions
impl Part for SystemApkOptions
Auto Trait Implementations§
impl Freeze for SystemApkOptions
impl RefUnwindSafe for SystemApkOptions
impl Send for SystemApkOptions
impl Sync for SystemApkOptions
impl Unpin for SystemApkOptions
impl UnwindSafe for SystemApkOptions
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