pub struct SplitApkMetadata {
pub is_master_split: Option<bool>,
pub split_id: Option<String>,
}Expand description
Holds data specific to Split APKs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§is_master_split: Option<bool>Indicates whether this APK is the main split of the module.
split_id: Option<String>Id of the split.
Trait Implementations§
Source§impl Clone for SplitApkMetadata
impl Clone for SplitApkMetadata
Source§fn clone(&self) -> SplitApkMetadata
fn clone(&self) -> SplitApkMetadata
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 SplitApkMetadata
impl Debug for SplitApkMetadata
Source§impl Default for SplitApkMetadata
impl Default for SplitApkMetadata
Source§fn default() -> SplitApkMetadata
fn default() -> SplitApkMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SplitApkMetadata
impl<'de> Deserialize<'de> for SplitApkMetadata
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 SplitApkMetadata
impl Serialize for SplitApkMetadata
impl Part for SplitApkMetadata
Auto Trait Implementations§
impl Freeze for SplitApkMetadata
impl RefUnwindSafe for SplitApkMetadata
impl Send for SplitApkMetadata
impl Sync for SplitApkMetadata
impl Unpin for SplitApkMetadata
impl UnwindSafe for SplitApkMetadata
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