pub struct ApkSet {
pub apk_description: Option<Vec<ApkDescription>>,
pub module_metadata: Option<ModuleMetadata>,
}Expand description
A set of apks representing a module.
This type is not used in any activity, and only used as part of another schema.
Fields§
§apk_description: Option<Vec<ApkDescription>>Description of the generated apks.
module_metadata: Option<ModuleMetadata>Metadata about the module represented by this ApkSet
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApkSet
impl<'de> Deserialize<'de> for ApkSet
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 ApkSet
Auto Trait Implementations§
impl Freeze for ApkSet
impl RefUnwindSafe for ApkSet
impl Send for ApkSet
impl Sync for ApkSet
impl Unpin for ApkSet
impl UnwindSafe for ApkSet
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